我想复制第52行,其中有30个左右的单元格,其中包含各种公式。然后我想将值(如编辑>选择性粘贴...>值操作)粘贴到另一行,其中行将是“53 + my_row_counter”,它将以重复循环递增。类似的东西:
tell application "Microsoft Excel"
repeat with my_row_counter from 1 to count of list_of_data
-- insert new data into worksheet (code omitted)
set results_row to range row 52
tell range row (53 + my_row_counter)
set value to results_row as values
end tell
end repeat
end tell