Skip to main content
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.

1 Solution

Accepted Solutions
sunny_talwar

May be try this

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

View solution in original post

2 Replies
sunny_talwar

May be try this

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

sunny_talwar

Or just this

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