ElizabethSchlag
11 months agoQrew Trainee
IF OR Statement Errors
I am trying to create a formula that if a supplier name is equal to XXX, XXX, or XXX then check the supplier requires legal review box, however I keep getting different errors. Here is my current formula, any advice?
If(
[Supplier] = "Workday" OR
[Supplier] = "Amadeus" OR
[Supplier] = "Flightkeys" OR
[Supplier] = "Google"
,
true,
false
)
I have also tried:
If(
Or(
[Supplier] = "Workday",
[Supplier] = "Amadeus",
[Supplier] = "Flightkeys",
[Supplier] = "Google"
),
true,
false
)
------------------------------
Elizabeth Schlagel
------------------------------