In a google sheet I have:
Range B1:B260
I have the Function:
(ImportXML(A1;"//a/@href")
(ImportXML(A2;"//a/@href")
(ImportXML(A3;"//a/@href")
.
.
.
(ImportXML(A260;"//a/@href")
I Need to delay the time between the calculation because If I perform this simultaneously, I Will Get #REF!
because limits in APIs and =ImportXML()
It will be fine if I delay 10 seconds per cell calculation
I tried creating a =LEN()
function to only perform the calculation in a cell just if the number of characters is bigger than X... But It delays just a tiny portion of time.
Using sleep(milliseconds)
in a google script could I get a formula sleep(B1:B260,5000)
? To Delay The ImportXML, Importdata, Import.... Process?