Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
...is there any way to display in a sheet object the date/time a script was reloaded? I'm trying to use the function ReloadTime() but not having any success. Any suggestions?
thanks.
And, it's easy to format in any way you want. For example, to see something like
"Sunday, October 11, 2009 10:30 am"
use
=timestamp(ReloadTime(), 'WWWW, MMMM D, YYYY hh:mm tt')
write that code into your script ;
let rt = reloadtime()
after reload create a textbox object and then write ;
=rt
thats all...
best regards,
Actually an additional variable in the script (or anywhere else) is not necessary. You can use =ReloadTime() directly in the textbox or wherever you like.
Rgds,
Joachim
You are right its not necessary . its true but also old school ![]()
And, it's easy to format in any way you want. For example, to see something like
"Sunday, October 11, 2009 10:30 am"
use
=timestamp(ReloadTime(), 'WWWW, MMMM D, YYYY hh:mm tt')
thanks for your responses.