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

Announcements
Independent validation for trusted, AI-ready data integration. See why IDC named Qlik a Leader: Read the Excerpt!
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.