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

Announcements
Join us to spark ideas for how to put the latest capabilities into action. Register here!
cancel
Showing results for 
Search instead for 
Did you mean: 
One_day_I_will_know
Contributor II
Contributor II

Dimension filtering, two definitions

Hi all,

I manage to filter dimensions when I only need one definition, for example:

=if(Customers.Area='North', [Customers.Tier],Null())

I've tried to figure out how to add another definition but haven't succeeded. For example this doesn't work: 

=if(Customers.Area='North' and Customers.Tier = 'New',  [Customers.Tier],Null())

Would somebody please tell me how to do it properly?

Labels (2)
1 Solution

Accepted Solutions
Anil_Babu_Samineni

Perhaps this?

=if(Customers.Area='North', If(Customers.Tier = 'New',  [Customers.Tier],Null()))

Best Anil, When applicable please mark the correct/appropriate replies as "solution" (you can mark up to 3 "solutions". Please LIKE threads if the provided solution is helpful

View solution in original post

2 Replies
Anil_Babu_Samineni

Perhaps this?

=if(Customers.Area='North', If(Customers.Tier = 'New',  [Customers.Tier],Null()))

Best Anil, When applicable please mark the correct/appropriate replies as "solution" (you can mark up to 3 "solutions". Please LIKE threads if the provided solution is helpful
One_day_I_will_know
Contributor II
Contributor II
Author

It indeed is - thank you for the quick reply!