How do I convert excel formula:
=IF(T-1 File="No","Investigate",IF(Portfolio Traded="No","No Investigation",IF(Security Traded="No","No Investigation","Investigate")))
Into Alteryx?
Solved! Go to Solution.
You can use IF-ELSEIF-ELSE in the Formula Tool, like so:
IF [T1 File] = "No" THEN "Investigate"
ELSEIF [Portfolio Traded] = "No" THEN "No Investigation"
ELSEIF [Security Traded] ="No" THEN "No Investigation"
ELSE "Investigate"
ENDIF
I've tried the formula, but it's not pulling the right data unfortunately.