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

Announcements
Q&A with Qlik - Qlik Cloud Migration: Questions about migrating to Qlik Cloud? Catch the latest replay!
cancel
Showing results for 
Search instead for 
Did you mean: 
evansabres
Specialist
Specialist

Drill Down Group

I have a drill down group called 'Menu Drill'

In the group, there is a field called fmlyGRP. I want to use this filed but exclude two possible values.

I attempted to use =IF(fmlyGRP <> 'Condiments' or fmlyGRP <> 'Food Preps', fmlyGRP) with the expected output that those two values would not be displayed, however, this is not functioning.

Labels (1)
1 Solution

Accepted Solutions
sunny_talwar
MVP
MVP

May be try this

=IF(fmlyGRP <> 'Condiments' and fmlyGRP <> 'Food Preps', fmlyGRP)

View solution in original post

2 Replies
sunny_talwar
MVP
MVP

May be try this

=IF(fmlyGRP <> 'Condiments' and fmlyGRP <> 'Food Preps', fmlyGRP)

sunny_talwar
MVP
MVP

Or just this

If(not Match(fmlyGRP, 'Condiments', 'Food Preps'), fmlyGRP)