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: 
Not applicable

selection calculation time

Hi All,

Does anyone know any way to calculate the time that a specific selection took for a selected chart??

For example when I select a country from a list box I want to know how much time it took for the chart sales per country (green progress bar) to get calculated.

Regards

1 Solution

Accepted Solutions
6 Replies
Clever_Anjos
Employee
Employee

Immediatly after the selection

Check Sheet Properties / Sheet Objects

Not applicable
Author

I know that you can check the calculation time of each object. I was just wondering if there is a way to retrieve that statistic and show it on a text box??

sujeetsingh
Master III
Master III

Sorry it may be done through the macro Script

Not applicable
Author

Do you have any ready sample available??

Clever_Anjos
Employee
Employee

here is the code you need

set s0 = ActiveDocument.GetSheetObject("CH01") ' your sheet object

t = so.GetObjectCalcTime

msgbox(t)

Clever_Anjos
Employee
Employee

PFA