Skip to main content
Announcements
Have questions about Qlik Connect? Join us live on April 10th, at 11 AM ET: SIGN UP NOW
cancel
Showing results for 
Search instead for 
Did you mean: 
akuttler
Creator
Creator

IF statement as Custom dimension

Hi,

I have a group of store locations.. I need to identify as either "Joint Venture" or "Enterprise" in my charts.

I have a custom dimension with the following expression:

=IF(StoreName = 'Derm 1' or

'Derm 3' or 'Derm 4', 'Enterprise', 'Joint Venture')


But it only picks up 'Derm 1' as  Enterprise and not the other two. What am I missing?


Thanks in advance.

11 Replies
devarasu07
Master II
Master II

Hi,

Can you close all your opened thread, it will be helpful for others who is having similar issue. Thanks

sunny_talwar

Since we are listing out all possible ways to do this, here is another one

If(StoreName Like 'Derm*, 'Enterprise', 'Joint Venture')