Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 Numbers 09 和 Applescript。我想将一个单元格中的值添加到另一个单元格中的现有值,将现有值替换为总和作为值。这类似于 Excel 中的复制/粘贴添加命令。谢谢你的帮助。-抢
明白了...我试图让它变得太难了。回想起我在 FORTRAN 和 Pascal 中的古老训练。
复制 0.1 到 xno tell application "Numbers" activate tell document 1 tell sheet 1 tell table 1 复制单元格 "B2" 的值到 xno xno - 200 复制 xno 到单元格 "C2" 的值 end tell end tell end tell end tell