I have the follow Excel IF statement that I need translated in Alteryx.
=IF(H6="CASH",IF(AB6<0,"CRO","CGO"),IF(AB6<0,"ORO","OGO")).
I've been able to get this far but it's returning a Parse Error at Char(135).
IF [A]='CASH' THEN (IF [B]<0 THEN 'CRO' ELSE 'CGO'
endIF)
else
(if [B]<0 THEN 'ORO' ELSE 'OGO' endIF)
Any help would be appreciated.