Skip to main content
Announcements
Qlik Connect 2025: 3 days of full immersion in data, analytics, and AI. May 13-15 | Orlando, FL: Learn More
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Make charts dependent on certain searches

Hi there,

I wonder if you can help.

I have two pie charts and 4 search filters.

I would like one pie chart to only be impacted by the 'universe' filter and the other should work for all filters,

Do you know how I can do this?

Thanks

1 Solution

Accepted Solutions
jonathandienst
Partner - Champion III
Partner - Champion III

Modify the expressions to override selections for the first. Assuming "Universe" is a field, then the expression should look something like:

     =Sum({1<Universe = p(Universe)>} Amount)   //override all selection except Universe.

Logic will get you from a to b. Imagination will take you everywhere. - A Einstein

View solution in original post

2 Replies
jonathandienst
Partner - Champion III
Partner - Champion III

Modify the expressions to override selections for the first. Assuming "Universe" is a field, then the expression should look something like:

     =Sum({1<Universe = p(Universe)>} Amount)   //override all selection except Universe.

Logic will get you from a to b. Imagination will take you everywhere. - A Einstein
Not applicable
Author

Perfect, thank you very much!!