1

使用下面的数字文件,我如何在单元格 B2 中设置一个值?

在此处输入图像描述

困难的部分是我不能使用下面的任何代码:

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上面代码中的。我想不通。任何帮助都感激不尽。

4

1 回答 1

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
于 2015-05-10T03:38:57.350 回答