首頁  >  問答  >  主體

使用App Script將Google表格資料新增至另一個Google表格的方法

<p>將一個Google sheet中的資料複製到另一個sheet中,使用appscript</p> <p>我想使用appscript在另一個電子表格中顯示 我想使用appscript將行和列資料從一個sheet添加到另一個sheet。 </p><p> 以正確的方式回答,<code>your text</code>不要出錯。 </p>
P粉295728625P粉295728625437 天前532

全部回覆(1)我來回復

  • P粉388945432

    P粉3889454322023-08-11 10:30:14

    將資料從一個電子表格複製到另一個電子表格

    function copydata() {
      const ss = SpreadsheetApp.getActive();
      const ss1 = SpreadsheetApp.openById(gobj.globals.test1id);//替换为id
      const sh1 = ss1.getSheetByName("Sheet1");
      const vs1 = sh1.getDataRange().getValues()
      const ss2 = SpreadsheetApp.openById(gobj.globals.test2id);//替换为id
      const sh2 = ss2.getSheetByName("Sheet1");
      sh2.clearContents();
      sh2.getRange(1,1,vs1.length,vs1[0].length).setValues(vs1);
    }

    回覆
    0
  • 取消回覆