Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
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...