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

Announcements
ALERT: QlikView server communication interruptions following Microsoft Windows Domain Controller security updates
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

Labels (1)
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