Advent of Code is now back for a limited time only! Complete as many challenges as you can to earn those badges you may have missed in December. Learn more about how to participate here!
Start Free Trial

Alteryx Designer Desktop Discussions

Find answers, ask questions, and share expertise about Alteryx Designer Desktop and Intelligence Suite.

Help Translating Excel Formula to Alteryx

djm
5 - Atom

Hello All,

I have the below excel formula that I am trying to use in Alteryx. Would be greatly appreciated if someone can help with this, so that I can use the exact same formula but for Alteryx:

 

=IF(AND(OR(AE2<>"England",NP2<>0),D2<>"Equity",T2>0,OR(D2<>"Options",A2="Pound")),T2,"")

1 REPLY 1
saveeshkumar
9 - Comet

Hi djm,

 

Please find the below formula..

 

IF
(
([A2]!="England" or [N2] != 0) AND
[D2]!="Equity" AND
[T2]>0 AND
([D2] !="Options" or [A2]!="Pound")
)
THEN [T2]
ELSE ""
ENDIF

 

saveeshkumar_0-1643000688576.png

 

 

Thanks

 

Labels
Top Solution Authors