Skip to main content
Announcements
Introducing Qlik Answers: A plug-and-play, Generative AI powered RAG solution. READ ALL ABOUT IT!
cancel
Showing results for 
Search instead for 
Did you mean: 
Clark_White
Contributor II
Contributor II

Hide Filter Control (Dynamically)

Hello,

I am fairly new to QlikSense and I have a requirement where I would like to hide/show a filter based on the selection of another filter.  For instance...i have  and original dimension that has 2 possible values, A and B and then I have  two additional dimensions.   Let's call them SubDimA and SubDimB and both have there own filters.

I would like the SubDimA filter to be visible when value 'A' is selected and SubDimB filter to be visible when 'B' is selected.  How can I do this in QlikSense?  Thanks in Advance. 

1 Solution

Accepted Solutions
MNicolas
Contributor III
Contributor III

Hi Clark,

In the Master Item you can create a dimension  in witch you use the formula :

=if(only(MyField)= 'A', [SubDimA ], [SubDimB] )

and then display this dimension in a Filter

Regards

 

 

View solution in original post

2 Replies
MNicolas
Contributor III
Contributor III

Hi Clark,

In the Master Item you can create a dimension  in witch you use the formula :

=if(only(MyField)= 'A', [SubDimA ], [SubDimB] )

and then display this dimension in a Filter

Regards

 

 

Clark_White
Contributor II
Contributor II
Author

Nice! Let me try this.   I was thinking that I needed 2 controls but I can filter by the appropriate dimension values and that should work.