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

Announcements
Qlik Open Lakehouse is Now Generally Available! Discover the key highlights and partner resources here.
cancel
Showing results for 
Search instead for 
Did you mean: 
bronsonelliott
Partner - Contributor III
Partner - Contributor III

Show/hide object based on filter

Hello.  I have a multi box that allows users to apply filters to a dashboard.  I would like to show/hide an object based upon if they have actually made a selection in that muti box. 

For example, if the user has not made a filter selection in the multi box, the object is hidden, however, once they do make a filter selection in the multi box, the object appears.

How would I go about doing that?  I'm sure it's a conditional "show" but not sure what syntax I should be using.

Thanks!

--

Bronson

1 Solution

Accepted Solutions
Nicole-Smith

You can't include the multibox itself in your conditional show, but you can include a field from the multibox in the conditional show, for example:

GetSelectedCount(YourField)>0

This will make it only show if something is selected in YourField.

**EDIT: See the attached for an example.

View solution in original post

2 Replies
Nicole-Smith

You can't include the multibox itself in your conditional show, but you can include a field from the multibox in the conditional show, for example:

GetSelectedCount(YourField)>0

This will make it only show if something is selected in YourField.

**EDIT: See the attached for an example.

bronsonelliott
Partner - Contributor III
Partner - Contributor III
Author

Thank you Nicole!!  Worked great and exactly what I was looking for.