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

Announcements
Qlik Connect 2026! Turn data into bold moves, April 13 -15: Learn More!
cancel
Showing results for 
Search instead for 
Did you mean: 
scotthan
Partner - Contributor III
Partner - Contributor III

Display calc times of objects?

When you execute a search in Google it will tell you how long the search took to execute, we would like to provide the same information inside a QlikView dashboard based on how long it takes to apply a filter. So, as a user selects a Region in a QV Dashboard, I want to know how long it took QlikView to actually apply the filter. Is that possible?

1 Solution

Accepted Solutions
Anonymous
Not applicable

Actually, it can be done by a macro:

sub ct

set Ch= ActiveDocument.GetSheetObject("CH01")

time = Ch.GetObjectCalcTime

msgbox(time)

end sub


View solution in original post

5 Replies
whiteline
Master II
Master II

Hi.

Yeah, you need a very fast man with a stopwatch  

The camera with a slow motion capture feature is also suitable.

Anonymous
Not applicable

Scott

In QV Desktop :

  • Settings
  • Document Properties

This shows various metrics for each object including Calc Time.

The Help says about this :

CalcTime The time in milliseconds needed for the last recalculation of the object's contents. This information is only relevant for objects that are actually calculated (charts, Table boxes and any objects containing formulas). 

Would this be of use to you ?

Best Regards,     Bill

brindlogcool
Creator III
Creator III

Sheet properties- Objects will give you the calc time for the current selection.

Anonymous
Not applicable

Actually, it can be done by a macro:

sub ct

set Ch= ActiveDocument.GetSheetObject("CH01")

time = Ch.GetObjectCalcTime

msgbox(time)

end sub


whiteline
Master II
Master II

Hi Bill.

I also thought about that.

Unfortunately the CalcTime is useless when you have more than one chart because of multitasking.

You see the times but you don't know when one object starts and the other ends and how many of them is calculated simultaneously.

In addition QV caches the results, so you have to restart it to make measures otherwise you'll see zeros.