Skip to main content
Announcements
Have questions about Qlik Connect? Join us live on April 10th, at 11 AM ET: SIGN UP NOW
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

Display last refresh date into report

Hi,

I will like to know if it is possible to show into a report the last refresh date made by publisher.

Does anyone have already faced this problem?

Thank you.

Sergio

2 Replies
hector
Specialist
Specialist

are you talking about the ReloadTime() function??

rgds

Not applicable
Author

You can assign the current date/time to a variable in your load script, and then display it in a text box.

In the load script


Let LasRefresh = Now();


and then in your text box


='Last Refreshed : ' & Date([LastRefresh]) & '
Time: ' & Time(LastRefresh)


ws