Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
We scheduled a Qlik View report on server and that report refresh every hour. Is it possible to display refresh time (data last load) in Qlik? Please let us know what field we need to track.
Hi Raguthu,
you can use the Function Reloadtime(). If you want to convert that time according to your local time you can use, in the second parameter you can put your localtime, place.
='Last Refreshed On : ' & ConvertToLocalTime(Reloadtime(), ’GMT-05:00’)
='Last Refreshed On : ' & ConvertToLocalTime(Reloadtime(),’Paris’)
With Regards
Harshita Gaur
Hi,
The function is
ReloadTime()
Regards,
Sergey
Use reloadtime() function
Hi,
You can use ReloadTime() to get the Last reload timestamp, please use below expression in text object to display in Dashboard
='Last Refreshed On : ' & ReloadTime()
Regards,
jagan.
Hi Raguthu,
you can use the Function Reloadtime(). If you want to convert that time according to your local time you can use, in the second parameter you can put your localtime, place.
='Last Refreshed On : ' & ConvertToLocalTime(Reloadtime(), ’GMT-05:00’)
='Last Refreshed On : ' & ConvertToLocalTime(Reloadtime(),’Paris’)
With Regards
Harshita Gaur