这应该很简单,但我可能没有以正确的方式接近它。我只是想将单元格“C7”的值从4增加到5.这就是我想象它的工作原理。任何建议都非常感谢。
tell application "Microsoft Excel"
get value of cell "C7"
set value of cell "C7" to current value +1
end tell
答案 0 :(得分:1)
在VBA和Applescript中,Excel需要知道要处理的工作簿和工作表。假设您要更改单元格的工作簿和工作表是激活的工作簿,那么:
tell application "Microsoft Excel"
tell active workbook to tell active sheet to set value of cell "C7" to (value of cell "C7") + 1
end tell