使用AS将包含公式和粘贴值的一行单元格复制到Excel中的另一行

时间:2014-03-13 16:38:09

标签: excel applescript

我想复制第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

0 个答案:

没有答案