Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Time in on open Pop up?

Hi,

Is this possible? I was wondering if i can show in a pop up message on open of the document how many hours and or minutes has passed since the last reload of the file.

Hope someone can help.

Thanks!

1 Solution

Accepted Solutions
Bjorn_Wedbratt
Former Employee
Former Employee

You could use an alert (Tools-> Alerts..) and have it trigger on Open with "Show popup" selected.
In the message box for the alert you could use an expression similar to:


=' This file last reloaded ' & ReloadTime() & CHR(10) &
hour(Now()-ReloadTime()) & 'hour(s) and' & CHR(10) &
Minute(Now()-ReloadTime()) & 'minute(s) ago'


View solution in original post

3 Replies
Bjorn_Wedbratt
Former Employee
Former Employee

You could use an alert (Tools-> Alerts..) and have it trigger on Open with "Show popup" selected.
In the message box for the alert you could use an expression similar to:


=' This file last reloaded ' & ReloadTime() & CHR(10) &
hour(Now()-ReloadTime()) & 'hour(s) and' & CHR(10) &
Minute(Now()-ReloadTime()) & 'minute(s) ago'


Not applicable
Author

People get annoyed of always clicking that thing. A text field with reload time is less obtrusive.

-Alex

Not applicable
Author

Hi Alex,

well in my case, people here often complain about their data not being feed into qlikview without looking at the reload time so i wana show it in their screen when they open so they would stop complaining 😃