gelöst: leere Zelle mit AppleScript erkennen

Hallo Forum,

wie kann man mittels AppleSCript in einem Rechenblatt eine leere Zelle erkennen? Sowas wie

set inputFault to false
if (length of value of cell theCell as text) = 0 then
   -- empty cell
   set inputFault to true
end if

funktioniert leider nicht.

Vielen Dank schon mal
Nicolas

Re: leere Zelle mit AppleSCript erkennen

#12815 On 21 März, 2020 16:55 Gion Gerber said,

Hallo Nicolas

Probier mal mit:
if cell theCell = empty

Herzlichen Gruss
Gion

Re: leere Zelle mit AppleSCript erkennen

#12816 On 22 März, 2020 09:00 Nicolas Trebst said,

cool, danke!

Manchmal kann die Welt so einfach sein
--Nicolas

Re: leere Zelle mit AppleSCript erkennen

#12817 On 23 März, 2020 13:22 admin said,

Noch eine Anmerkung:
Man kann das kürzer schreiben, wenn man eine Boolean Variable setzen möchte.
Anstatt "If …" geht einfach

set inputFault to cell "A1" of table 1 of document 1 is empty

Thomas Eckert
RagTime Support