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

Announcements
Want to see what's currently in public preview? We've pulled it all together in one place. Check it out here
cancel
Showing results for 
Search instead for 
Did you mean: 
Brijesh
Contributor II
Contributor II

ReloadTime Function not working properly

We are using the Qlik Sense SAAS edition. I noticed that the reloadtime() function is not working matching with the last time reload time on the app.

When I go to my app, click on the three dots and then go to the reload history I see that it was successfully reloaded this morning (re: 04/25). But when I use the reloadtime function in one of my sheets inside this app it shows as 04/22.

 

I am not sure why they dont two match. Can someone help me understand why these two don't match?

 

 

Labels (1)
2 Replies
Frank_E-W
Partner - Contributor III
Partner - Contributor III

Others seem to have had this issue before (1, 2).
Does everything load correctly? 

 

The workaround of using 

vTestReload = now(1);

in the load script, as proposed by Erichshiino, could be worth trying. 

FedericoC
Partner - Contributor III
Partner - Contributor III

Usually It happens when your GMT is different to Tenant GMT. I solved in this way: at the end of the script I added 

Let vReloadTime=converttolocaltime(now(),'Rome');

or

ConvertToLocalTime(reloadtime(),'Rome')

Ciao