简体   繁体   English

将动态范围从一个电子表格复制到另一个使用getfileid调用的电子表格

[英]copy dynamic range from one spreadsheet to another spreadsheet called with getfileid

I'm trying to do the following: 我正在尝试执行以下操作:

  • Loop through column "A" in "Customer" and get corresponding sheet name. 循环浏览“客户”中的“ A”列,并获得相应的工作表名称。
  • Get the sheet and copy all used range in sheet, eg (A;B;C;etc) to the specific files referenced in column B. 获取工作表并将工作表中所有使用的范围(例如(A; B; C; etc))复制到B列中引用的特定文件。

Here's the code I've written so far: 这是我到目前为止编写的代码:

function updatefile() {
  var ss = SpreadsheetApp.getActive();
  var sh = ss.getSheetByName('CUSTOMER')
  var data = sh.getRange("A2:B12").getValues(); // get the range of non empty cells
  for (var i = 1; i < data.length; i++) {
    var source = ss.getSheetByName(data[i][0]);
    var range = source.getRange('C3:M1003'); //assign the range you want to copy
    var data = range.getValues();

    var destination = SpreadsheetApp.openById(data[i][1]); // open the corresponding file by using the file id in the second column 
    var destbodya = destination.getSheetByName('UPDATE ON ORDERS');
    destbodya.getRange(ts.getLastRow()+1, 1,49,7).setValues(data); //you will need to define the size of the copied data see getRange()
  }
}

Link to my Sample Spreadsheet 链接到我的样本电子表格

I finally got this to work after a lot of searching and trials. 经过大量的搜索和试验,我终于可以使用它了。 for those who comes by such challenges. 对于那些面临这些挑战的人。 Cheers 干杯

function updatefile() {
  var ss = SpreadsheetApp.getActive();
  var sh = ss.getSheetByName('CUSTOMER')
  var data = sh.getRange("A2:B73").getValues(); // get the range of non emmpty cells
  for (var i = 1; i < data.length; i++) {
    if (data[i][0] != '') {
      var source = ss.getSheetByName(data[i][0]);
      var range = source.getRange('C3:M1003'); //assign the range you want to copy
      var valuedata = range.getValues();

      //var destination = SpreadsheetApp.openById("xxxxxxxxxxxxrrrrrsomeID"); // enter file ID directly or the nest line
      var destination = SpreadsheetApp.openById(data[i][1]); // Iterate through the range and open the corresponding file by using the file id in the secound column 
      var dest_1body = destination.getSheetByName('blah blah sheetname'); // first sheet destination to copy data to
      dest_1body.getRange("A2:K1002").setValues(valuedata); //you will need to define the size of the copied data see getRange()

      var destination = SpreadsheetApp.openById(data[i][1]); // open the coresponding file by using the file id in the secound column
      var dest_2body = destination.getSheetByName('blah blah sheetname'); // second sheet to copy same data to

      dest_2body.getRange("A28:K1028").setValues(valuedata); //you will need to define the size of the copied data see getRange()
    }
  }
}

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM