Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
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
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.
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.
Thank you Nicole!! Worked great and exactly what I was looking for.