Hi everyone,
I have an and or statement that looks at one column, and then once it spots "flagship" it look for any of the following "or's"
I am at a loss trying to get it to work.
Any help would be appreciated(:
I would recommend add "(" after the "and".
You have an extra ending parentheses after "Flagship Allowed"! So either delete that parentheses or add an extra one earlier on in your formula
Thanks for the quick reply!
I get this: It was this before so i added the extra one and it got me to the previous picture.
Brings me back to this:(
Oh, you can’t list out multiple words in a contains statement. So you’ll either have to separate them out or use maybe NOT IN instead.
if you copy paste the formula here, we can help more directly
Direct formula:
f contains([Lounge Type],"Flagship")
and ! Contains([FFP Tier], "Sapphire", "Emerald")
or ! Contains([Tier], "ex-platinum", "Platinum",
"platinum pro", "conciergekey")
or ! contains([Flagaship Allowed?], "Flagship Allowed")
then "x" else "" endif
Just posted it
IF contains([Lounge Type],"Flagship")
and !Contains([FFP Tier], "Sapphire")
or !Contains([FFP Tier], "Emerald")
or !Contains([Tier], "ex-platinum")
or !Contains([Tier], "Platinum")
or !Contains([Tier], "platinum pro")
or !Contains([Tier], "conciergekey")
or ! contains([Flagaship Allowed?], "Flagship Allowed")
then "x" else "" endif
This Formula should at least get rid of the red underline - I don't know if it will accomplish what you want though. For example, you might be better off using AND
IF contains([Lounge Type],"Flagship")
and !Contains([FFP Tier], "Sapphire")
and !Contains([FFP Tier], "Emerald")
and !Contains([Tier], "ex-platinum")
and !Contains([Tier], "Platinum")
and !Contains([Tier], "platinum pro")
and !Contains([Tier], "conciergekey")
and ! contains([Flagaship Allowed?], "Flagship Allowed")
then "x" else "" endif