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

Announcements
Write Table now available in Qlik Cloud Analytics: Read Blog
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

last load took

Hello all,

I would like to display a "last load took mm:ss" in one of my apps but can't find a function for it. I know I can use RELOADTIME to get the time the last load finished but is there a way to get the start time of the last load?

Many thanks for any suggestions.

APS

1 Solution

Accepted Solutions
Not applicable
Author

Start the script with

let starttime =now() ;

end the script with

let endtime =now() ;

create a textbox:

=time(endtime-starttime)

/D

View solution in original post

2 Replies
Not applicable
Author

Start the script with

let starttime =now() ;

end the script with

let endtime =now() ;

create a textbox:

=time(endtime-starttime)

/D

Anonymous
Not applicable
Author

Just set a variable at the beginning of your script to NOW()