Skip to main content
Announcements
Accelerate Your Success: Fuel your data and AI journey with the right services, delivered by our experts. Learn More
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;