posso impostare il formato di una cella in un foglio di calcolo Numbers utilizzando:Come si imposta il numero di decimali in una cella Numbers utilizzando AppleScript?
tell application "Numbers"
activate
tell document 1
tell active sheet
set the selectedTable to ¬
(the first table whose class of selection range is range)
end tell
tell selectedTable
tell column "J"
set the format of cell 3 to number
end tell
end tell
end tell
end tell
Ma come faccio a impostare il numero di cifre decimali della cellula?