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

Announcements
Want to see what's currently in public preview? We've pulled it all together in one place. Check it out here
cancel
Showing results for 
Search instead for 
Did you mean: 
antoniotiman
Master III
Master III

Evaluation Time before executing object

Hi,

haw can I evaluate  approximately run-time of object/expression before executing ?

I would use this for set "conditions of object/expression" to avoid time too long.

I think to a function like "Explain" of SQL DB.

Currently I use :

conditions   Count(DISTINCT DimensionA)*Count (DISTINCT DimB)*Count(DISTINCT DimC) < $(vLimitObj1)

Any suggestion ?

Regards

Labels (1)
4 Replies
jagan
Partner - Champion III
Partner - Champion III

Hi,

You can get the calculation time like this

Sheet Properties-> Objects-> Object ID and check the CalcTime

It is the time taken to load the object, but it is not possible to get through any function.

Regards,

Jagan.

jagan
Partner - Champion III
Partner - Champion III

Hi,

To improve performance avoid using Count(DISTINCT) instead arrive a flag and use Sum(Flag).

Regards,

Jagan.

tresB
Champion III
Champion III

antoniotiman
Master III
Master III
Author

Thanks Jagan,

but I alredy know time after executing object.

Regards