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

Announcements
Join us in Bucharest on Sept 18th for Qlik's AI Reality Tour! Register Now
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Busy Chart

I have a straight table which has 20 expression fields. This makes it busy. But whenever there is a filter applied this works just fine. I was wondering if there is a functionality which I can use to display the table only when its not busy or else display the message 'Select Filter1/Filter2/Filter3'

1 Solution

Accepted Solutions
Kushal_Chawda

go to chart properties-> General Tab-> In calculated condition put below condition

getselectedcount(Filter1)>0 and getselectedcount(Filter2)>0 and getselectedcount(Filter3)>0

Now Click on  Error Messages button, then click on Calculation condition unfulfilled and type

Please select Filter1/2/3

View solution in original post

4 Replies
vishsaggi
Champion III
Champion III

Try this in your Straight table Chart General tab:Capture.PNG

Kushal_Chawda

go to chart properties-> General Tab-> In calculated condition put below condition

getselectedcount(Filter1)>0 and getselectedcount(Filter2)>0 and getselectedcount(Filter3)>0

Now Click on  Error Messages button, then click on Calculation condition unfulfilled and type

Please select Filter1/2/3

Not applicable
Author

Thank you Vishwarath. That works fine. But when I have =GetSelectedCount(Filter1,Filter2,Filter3)>=1 on calculation condition it doesn't work. I have also tried or in place of  , .

Not applicable
Author

Thank you Kushal it worked