2014-07-02 112 views
0

我有一個需要使用Google腳本複製到Google文檔的電子表格。 我試過Sheet.Copyto,但它支持在工作表內而不是文檔。我在名爲Export的電子表格中有按鈕。在導出時,數據應該在Google文檔中可用。有沒有人試過這個?如何將Google Spread工作表數據導入Google文檔(Word文檔)

+0

這是一個谷歌 - 應用程序 - 腳本題。嘗試使用標籤「google-apps-script」。另外,建議您搜索google-apps-script API文檔。 – eddyparkinson

+0

您的問題絕對過於寬泛,請閱讀有關如何閱讀ss內容以及如何在文檔中編寫數據的文檔。 –

回答

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); 
} 

該功能對電子表格的第一張,如果你需要做一個for循環在0 ss.getSheets()[0]

+0

@Alfilerico:謝謝。我正在嘗試這個,讓我確認一下。 – pili