Skip to main content
Announcements
Introducing Qlik Answers: A plug-and-play, Generative AI powered RAG solution. READ ALL ABOUT IT!
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

4 Replies
jagan
Luminary Alumni
Luminary Alumni

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
Luminary Alumni
Luminary Alumni

Hi,

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

Regards,

Jagan.

antoniotiman
Master III
Master III
Author

Thanks Jagan,

but I alredy know time after executing object.

Regards