I seem to get an error when i try this formula , I have tried checking previous posts on this topic, but I'm unable to find an answer to why I face this error.Need help!
IF [A]="None" && [B] ="None"
THEN "No Change"
ELSE IF [A]="MO" && [B]="MO"
THEN "No Change: MO"
ELSEIF [A] != [B]
THEN "Change required"
ELSEIF [Inventory]>= "600" OR [ Inventory]<="-600"
THEN "Review Required"
ELSE "No Review Required"
ENDIF
Thank you in advance!
Solved! Go to Solution.
There are a couple of issues to look at:
It works! Thank you for pointing the mistakes.