Skip to main content
Announcements
Introducing Qlik Answers: A plug-and-play, Generative AI powered RAG solution. READ ALL ABOUT IT!
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

Displaying reload time

Hi,

Is it possible to display the last reload time of an application in the dashboard.

Thanks,

Remya

6 Replies
karthikoffi27se
Creator III
Creator III

Hi Remya,

Assign a variable at the end of the script as vEndReloadTime = now() ; and pull this variable into the dashboard. This will show the last reload time of the dashboard.

Many Thanks

Karthik

Anonymous
Not applicable
Author

Thanks for your reply.

I have assigned task in qmc to reload the data every one hour, i need to display that time.

surendraj
Specialist
Specialist

you can show last reload time in textbox.

'Last reload on - ' & reloadtime()

Or
MVP
MVP

Just keep in mind that this is when the reload finished - the actual information contained will likely be older than the reloadtime(), as it will be up to date based on the individual load, not the end of the full reload script.

Anonymous
Not applicable
Author

Hi,

Thanks for your help.

Its showing the last reload which I did manually, what I need is last reload of application from the server.

Siva_Sankar
Master II
Master II

Hi Remya,

Keep the below formula in a text box in your dashboard. It will show the last reload time irrespective of whether you reload manually or by server automatically.

'Last reload on - ' & reloadtime()


-Siva