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

Announcements
Qlik GA: Multivariate Time Series in Qlik Predict: Get Details
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

How do hide and show controls base on priority

Hello,

See my attach. i want to hide/show my table and label base on my selections.

4 Replies
Not applicable
Author

I tried  GetSelectedCount(Title) = 0 or GetSelectedCount(Name) = 0 or GetSelectedCount(Day)=0 and  GetSelectedCount(Week) = 0

But still not working

maxgro
MVP
MVP

maybe

=

GetSelectedCount(Title)>0 and GetSelectedCount(LastName)>0 and

(GetSelectedCount(Year)>0

or GetSelectedCount(Q)>0

or GetSelectedCount(Month)>0

or GetSelectedCount(Week)>0

or GetSelectedCount(Day)>0)

Not applicable
Author

Didnt work

settu_periasamy
Master III
Master III

Hi,

Maxgro expression is working. And you need to give the opposite way of Your Text box Also.

Like

TextBox : Conditional Layout:

=if((GetSelectedCount(Title)>0 and GetSelectedCount(LastName)>0 and

(GetSelectedCount(Year)>0

or GetSelectedCount(Q)>0

or GetSelectedCount(Month)>0

or GetSelectedCount(Week)>0

or GetSelectedCount(Day)>0))=0,-1,0)

Check the Attachment.