How can I build this formula in the workflow?
Find in attachement the way of doing this in Alteryx with dummies data. You can adapt in your workflow.
Let me know if it works and please, do not hesitate to mark this answer as solution if it helped.
Hello, I will walk us both through the solution as follows. A point I should make first, though, is that Excel uses formulas to reference specific cells, while Alteryx will refer to the column. So when I convert this into "Alteryx speak," you will have to go one step further and change the bracketed items into the column names.
Let's break this down a bit. Formatting your formula to help understand a bit better:
Looks like we have a giant "IF" statement with an "AND" statement and another "IF" statement embedded inside.
So far, our formula is:
IF [AA7]="N/A" AND ( [AB7]<-1 OR [Z7] IN ("Caa1", "Caa3", "Ca") ) THEN "Yes" ELSEIF [red box 2] THEN "Yes" ELSE "No" ENDIF
Hopefully this is enough to go off of to complete the [red box 2].
Let me know if this was helpful!
Edit: Parenthesis