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: 
Not applicable

Conditional Dimension on a Graph

Hi All,

I have a graph with 7 different expressions and I would like so conditionally hide some or the others based on a selection. It's fairly simple, the selection is a yes or no result. So if the selection is yes, I would like the first three expressions to display and if the selection is no, I would like the last four to display. I'm currently trying to use the conditional function of the expressions tab of chart properties.

Thank you in advance!

1 Solution

Accepted Solutions
swuehl
MVP
MVP

As condition for first three expressions, use something like

=Only(SelectionField) = 'yes'

and for the other

=Only(SelectionField) = 'no'

View solution in original post

3 Replies
swuehl
MVP
MVP

As condition for first three expressions, use something like

=Only(SelectionField) = 'yes'

and for the other

=Only(SelectionField) = 'no'

julian_rodriguez
Partner - Specialist
Partner - Specialist

Hello Elizabeth

Please find attachment.

I think it's the answer for your need.

Regards

Not applicable
Author

Both work! Thank you