Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Write Table now available in Qlik Cloud Analytics: Read Blog
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Display Date/Time that a script was reloaded...

...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.

1 Solution

Accepted Solutions
Anonymous
Not applicable
Author

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')

View solution in original post

5 Replies
Not applicable
Author

write that code into your script ;

let rt = reloadtime()


after reload create a textbox object and then write ;

=rt


thats all...

best regards,

biester
Specialist
Specialist

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

Not applicable
Author

You are right its not necessary . its true but also old school Geeked

Anonymous
Not applicable
Author

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')

Not applicable
Author

thanks for your responses.