使用AppleScript,如何设置Numbers App / iWork文件的单元格的值

时间:2015-05-09 22:46:53

标签: applescript automator iwork

使用下面的数字文件,如何将值设置为单元格B2?

enter image description here

困难之处在于我无法使用以下任何代码:

set the value of cell 2 of column "B" to "200.00"

set the value of cell "B2" to "200.00"

根据要求,我必须找到行和列,因为它们的位置可以改变。

我已经完成了这部分工作:

set the value of cell 2 of column of (first cell of row 1 whose value is "SUM") to "200.00"

现在我试图摆脱上面代码中的cell 2。我无法弄明白。任何帮助将不胜感激。

1 个答案:

答案 0 :(得分:1)

您可以使用标题的名称,如下所示:

tell application "Numbers"
    tell table 1 of sheet 1 of document 1
        set colIndex to address of column "SUM"
        set value of cell colIndex of row "Jan" to "200.00"
    end tell
end tell