Skip to main content
Announcements
Qlik Introduces a New Era of Visualization! READ ALL ABOUT IT
cancel
Showing results for 
Search instead for 
Did you mean: 
StacyCui
Creator
Creator

Compare Last Load Time with Today

Hi, I want to compare last load time  with now  so that it can remind users that it doesn't load today. But when I use if function ,it shows not equal. Does it relate to the Timezone?

StacyCui_0-1668504686469.png

 

1 Solution

Accepted Solutions
MayilVahanan

Hi

Both ReloadTime() and Now() contains the timestamp, So if you want to compare it, try like below

if(Floor(ReloadTime()) = Floor(Now()), 1, 0)

Thanks & Regards, Mayil Vahanan R
Please close the thread by marking correct answer & give likes if you like the post.

View solution in original post

1 Reply
MayilVahanan

Hi

Both ReloadTime() and Now() contains the timestamp, So if you want to compare it, try like below

if(Floor(ReloadTime()) = Floor(Now()), 1, 0)

Thanks & Regards, Mayil Vahanan R
Please close the thread by marking correct answer & give likes if you like the post.