0
votes

Is it possible to see changes to a Google Spreadsheet made by an Apps Script while the script is still running?

It appears to me that if a Google Apps script makes several modifications to a spreadsheet, they all take effect, or at least they all LOOK (on screen) like they take effect only when the script terminates.

1
Have you tried an operation, pause for one second, watch the screen, try an operation... Repeat? - zipzit
Try SpreadsheetApp.flush() - Alan Wells

1 Answers

1
votes

Spreadsheetapp.flush() is the answer.

Thank you Sandy Good. Sorry I can't vote up your comment.