0
A
回答
1
這是可以做到的。
下面寫代碼的文檔的腳本編輯器,
function readFromSpreadsheetAndWriteOnDoc()
{
// get the Spreadsheet by sheet id
var source = SpreadsheetApp.openById('1eqaThzYmTbZzP_xGTrPnTD1JX-B8rXrBrWDW8DwMNeU');
// select the sheet
var sourcesheet = source.getSheetByName('Chart');
// get the values on selectd range
var srcData = sourcesheet.getRange('B2:C5').getValues();
//now your table data is on var 'srcData'
// select this google doc
var doc = DocumentApp.getActiveDocument();
// select the body
var body = doc.getBody();
body.insertParagraph(0, 'My Title').setHeading(DocumentApp.ParagraphHeading.HEADING1).setAlignment(DocumentApp.HorizontalAlignment.CENTER);
table = body.appendTable(srcData);
table.getRow(0).editAsText().setBold(true);
}
你會得到這個,
享受!
相關問題
- 1. 按需複製Google Spreadsheet
- 2. 從csv文件複製一個範圍到一個Google Spreadsheet
- 3. 將列的值複製到另一列
- 4. 將一系列單元格複製到腳本
- 5. 將一系列單元格複製到新工作表
- 6. Google Spreadsheet - 將值返回到多列
- 7. Google Spreadsheet:將行添加到特定列?
- 8. Google Spreadsheet onEdit - 限制到一個範圍
- 9. 如何將clojure的doc函數應用於一系列函數
- 10. 如何複製.doc頁面
- 11. 將工作表數據複製到Doc表
- 12. 將Google Spreadsheet導入Google Spreadsheet
- 13. 將一列中的唯一值複製到另一列R
- 14. 將文件(img/doc)從特定路徑複製到另一個Android
- 15. 複製一列的子字符串並複製到另一列
- 16. 將聯繫人從一個源複製到另一個源
- 17. 將文本複製到iPhone的系統
- 18. Excel - 將格式從一個圖表系列複製到另一個圖表系列
- 19. 如何在Google Adwords中將地點從一個廣告系列複製到另一個廣告系列?
- 20. 如何將一系列數字重複到列的末尾?
- 21. 如何將一列的內容複製到另一列?
- 22. 在分隔文件中將一列複製到另一列
- 23. 將數據從一列複製到另一列用於報告
- 24. 將數據從一列複製到另一列
- 25. 將一列中的列複製到另一個表中
- 26. 在jQuery中將一列的內容複製到另一列
- 27. 將一列數據複製到另一列的腳本
- 28. 將一個陣列複製到另一個陣列
- 29. SQL Server:將數據從一列複製到另一列?
- 30. 將列複製到Excel宏列表中