我想使用以下代码,但我没有常量(本例中为2和4)我需要使用变量。
以下是代码:
var ss = SpreadsheetApp.getActiveSpreadsheet();
var source = ss.getSheets()[0];
var destination = ss.getSheets()[1];
var range = source.getRange("B2:D4");
// This copies the data in B2:D4 in the source sheet to
// D4:F6 in the second sheet
range.copyValuesToRange(destination, 4, 6, 4, 6);
任何帮助将不胜感激。 :)
答案 0 :(得分:0)
var col1 = 2;
var col2 = 4;
var range = source.getRange("B" + col1 + ":D" + col2);