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

Announcements
Join us in Bucharest on Sept 18th for Qlik's AI Reality Tour! Register Now
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

How to filter the dimension?

Hi All,

I have field named 'Category' values red, yellow and green and maned 'Type' values high, middle and low.

Now I put it into Chart dimension, I don't want to show Type low in this dimension if Category is red, how to filter it?

2 Replies
antoniotiman
Master III
Master III

Hi Adrianus,

Sum({<Category-={'Red'}>+<Type-={'Low'}>} Value)

or

Sum(If(Category <> 'Red',Value,If(Type <> 'Low',Value)))

Regaards,

Antonio

Anonymous
Not applicable
Author

Thank you Antonio,

I'll try your formula and inform you the result...