Skip to main content
Woohoo! Qlik Community has won “Best in Class Community” in the 2024 Khoros Kudos awards!
Announcements
Nov. 20th, Qlik Insider - Lakehouses: Driving the Future of Data & AI - PICK A SESSION
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Show/hide object regarding simple selction status

Hi,

I need to show/hide a digramm object depending on the selection status of a multibo ... in fact depending of anything beeing selected or not.

If there is no selection filter active -> don't show.
If there is any selection criteria used -> show diagram

Sounds simple but I cannot see what function I should use in the show condition in the object's layout tab.

Best Regards,

Georg

1 Solution

Accepted Solutions
Anonymous
Not applicable
Author

Hi,

You could use something like:

if(GetSelectedCount(FIELDNAME)>0,1,0)

If there are no selections in the field, the object will be hidden, and once something is selected, the count will be larger than 0 and hence the object will show.

View solution in original post

1 Reply
Anonymous
Not applicable
Author

Hi,

You could use something like:

if(GetSelectedCount(FIELDNAME)>0,1,0)

If there are no selections in the field, the object will be hidden, and once something is selected, the count will be larger than 0 and hence the object will show.