回答編集履歴
1
SpreadsheetApp.flush(); 書き忘れを追加
answer
CHANGED
@@ -17,6 +17,7 @@
|
|
17
17
|
const ss = SpreadsheetApp.getActiveSpreadsheet();
|
18
18
|
const sheet = ss.getSheetByName("変更前");
|
19
19
|
sheet.getRange(row,col).setValue(val);
|
20
|
+
SpreadsheetApp.flush();
|
20
21
|
}
|
21
22
|
}
|
22
23
|
|