我有代码可以在电子表格中成功呈现数据。它低于
//Function to insert data in the sheet on clicking the submit button
var submissionSSKey = '1BkZoHkyjfv2H_3uuvZ6ltgXCD0WdwMwirLqcJ8__oDY';
function insertInStyleSheet(e)
{
var app = UiApp.getActiveApplication();
var name = e.parameter.name;
var message = e.parameter.message;
app.getElementById('info').setVisible(true).setStyleAttribute('color','red');
var sheet = SpreadsheetApp.openById(submissionSSKey).getActiveSheet(); //What i have to do here ?????
var lastRow = sheet.getLastRow();
var targetRange = sheet.getRange(lastRow+1, 1, 1, 2).setValues([[name,message]]);
return app;
}
现在我要做什么?
我在(Sheet2)中打开了另一张纸。我必须在该表中呈现数据(目前它在同一张表(Sheet1)中呈现)。
如何渲染sheet2?
答案 0 :(得分:1)
使用getSheetByName(name)。而不是getActive()。