I've done a lengthy search and much experimenting with code but couldn't find what I'm looking for. Maybe someone out there can kindly help?
I have a Google Spreadsheet with a complex formula in cell A1. Sometimes, the cell says "Thinking..." for a few seconds while the formula is working out a result.
I have a script 'myFunction()' which depends on the value in cell A1. It doesn't run properly if the cell says "Thinking...", so I am therefore trying to create another script which waits until the formula has finished 'Thinking', and then executes myFunction().
This is what I have so far:
function waitMyFunction () {
var ss = SpreadsheetApp.getActiveSpreadsheet();
var s = ss.getSheetByName('Sheet1');
var range = s.getRange('A1:A1') // range where I want to make sure 'Thinking' is done
var values = range.getValues();
var string = values.toString();
var loading = "Thinking...";
while (string.search(loading) ==! 0); {
(Utilities.sleep(10000)); // Wait for 10 seconds
}
myFunction();
};
The problem is, the script seems to wait for 10 seconds no matter what the value in cell A1 is. It waits even when the formula isn't 'Thinking'. I need this script to run fast, I can live with it taking 10 seconds the odd time the formula is thinking but not every time!
Can anyone please point me in the right direction? I have spent hours trying to work this one out. If anyone has any ideas, your help will be very much appreciated.
Many thanks for looking.