如何将Google电子表格数据导入谷歌文档(word doc)

时间:2014-07-02 19:16:23

标签: google-apps-script google-sheets google-docs

我有一张电子表格,需要使用谷歌脚本复制粘贴到谷歌文档。 我尝试过Sheet.Copyto,但它支持工作表而不支持Document。我在名为Export的电子表格中有按钮。在导出数据应该在谷歌文档中可用。有人试过这个吗?

1 个答案:

答案 0 :(得分:0)

这应该对你有用

function copySpreadsheet2Doc()
{
  var ss = SpreadsheetApp.getActiveSpreadsheet(); //the spreadsheet where the data is
  var data = ss.getSheets()[0].getDataRange().getValues();//the data in a String[][] format

  var doc = DocumentApp.openById("your document id");//open the document in the way that your want, url or id or create a new one "var doc = DocumentApp.create("name of your document")
  doc.getBody().appendTable(data);
}

此函数用于SpreadSheet的第一张,如果您需要在for的0中进行ss.getSheets()[0]循环