有没有办法输入由sheet.appendRow(rowContents)
以外的脚本生成的数据?
我想将新数据输入特定的电子表格单元格。
如果这真的是一个DUMB问题,请原谅我的无知,并感谢您的帮助。
答案 0 :(得分:0)
这是一种颠倒从电子表格中获取值的过程的方法。
function writeData(){
var sheet = SpreadsheetApp.getActiveSheet();
var new1=sheet.getRange("B3:D3");
var new2=new1.getValues();
new2[0][0]=21;
new2[0][1]="extra";
new2[0][2]=48.3
new1.setValues(new2);
new1.copyValuesToRange(0,2,4,3,3);
}