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