Skip to main content
Announcements
Introducing a new Enhanced File Management feature in Qlik Cloud! GET THE DETAILS!
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Conditional Layout


Hi All,

Hope you can help. I am working on a dashboard which requires a searchbox object to show only when there is no selection made in the field supplier.

I have tried isnull but the object seems to appear again when more than one selection has been made for supplier.

Appreciate any advice.

Thanks and regards,

Aisling

1 Solution

Accepted Solutions
Not applicable
Author

Hi,

You'll need to use following condition to show and hide the search box:

     if(GetSelectedCount(Field Supplier) = 0, True(), False())

Regards,

Sankalp

View solution in original post

3 Replies
Not applicable
Author

Hi,

You'll need to use following condition to show and hide the search box:

     if(GetSelectedCount(Field Supplier) = 0, True(), False())

Regards,

Sankalp

Aurelien_Martinez
Partner - Specialist II
Partner - Specialist II

Hi,

2013-11-27_110323.png

Best,

Aurélien

Help users find answers! Don't forget to mark a solution that worked for you!
Not applicable
Author

That worked. Thank you!!