Probier das…

Show Plain Text
  1. set columnName to "adress"
  2. set cityName to text returned of (display dialog "Bitte Stadtnamen eingeben" default answer "" buttons {"OK"} default button 1)
  3.  
  4. tell application "Numbers"
  5.   tell table 1 of active sheet of document 1
  6.     tell column columnName
  7.       repeat with rowIndex from 2 to (count rows)
  8.         set stringValue to value of cell rowIndex
  9.         if stringValue is not missing value and stringValue is not "" then
  10.           try
  11.             set value of cell rowIndex to stringValue & ", " & cityName
  12.           on error
  13.             exit repeat
  14.           end try
  15.         end if
  16.       end repeat
  17.     end tell
  18.   end tell
  19. end tell


Dem screenshot entnehme ich, dass die Spalte adress heisst. Wenn das nicht so ist, ändere die erste Zeile im code.

Dann wirst du nach dem Stadtnamen gefragt. Das script hängt dann den Namen in jeder Zelle der Spalte an.
----------
Gruss

Stefan