Hello Community,
I am trying to add an OR option to this formula which currently works for provisioning without it. Basically I want to add Customer Country is not blank OR Project Type = Demo / Customer Evaluation.
Formula should allow provisioning if Project Manager at row is not blank, Project Keyword is not blank, (Customer Country Ship to is not blank OR Project Type is Demo / Customer Evaluation), Project State not Rejected
=IF(AND([Ready for Provisioning]@row = 1, NOT(ISBLANK([Project Manager]@row)), NOT(ISBLANK([Project Keyword]@row)), NOT(ISBLANK([Customer Country (Ship to)]@row)), [Project State]@row <> "Rejected"), 1, 0)
Everything I have tried has resulted in errors. :(