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

Announcements
Qlik Open Lakehouse is Now Generally Available! Discover the key highlights and partner resources here.
cancel
Showing results for 
Search instead for 
Did you mean: 
skiruthigadevi
Partner - Creator
Partner - Creator

Regarding getting the reload time of a QlikSense report in an excel/text file

Hi Friends,

I appreciate your time and help. I am actually looking for a way to get the reloadtime of a QlikSense report in an excel file. Could you kindly let me know your suggestions?

Thanks in advance!

Best Regards,

Kiruthiga

1 Reply
dplr-rn
Partner - Master III
Partner - Master III

You can update the script to create a table which create the data you need and dump into a csv file

e.g.

let vStartTime=now();

//your script

//at end of the script

ReloadStat:
Load
'$(vStartTime)' as StartTime,
now() as EndTime,
now()-'$(vStartTime)' as Duration
AutoGenerate 1;