我想修改下面显示的脚本,这样如果重新运行,它不会覆盖预先存在的数据,而是写入它下面的行。
(我使用谷歌电子表格)
moveValuesOnly fonction () {
var ss = SpreadsheetApp.getActiveSpreadsheet ();
var source = ss.getRange ("Sheet1 F1: H3 ');
source.copyTo (ss.getRange ("Feuil2 A1! '), {contentsOnly: true});
source.clear ();
}