Hi there!
I am trying to create a formula that looks at an entry (single select) and if that entry is = A, B or C say "Blabla" and if it says anything else say "Haha".
I have hence tried to nest OR() into IF() as followed:
IF(entry=OR("A", "B","C"), "Blabla", "Haha")
I am not shown any error but the formula result is wrong (It says "Haha" when it should say "Blabla').
Any thoughts?