In case you missed the announcement: Alteryx One is here, and so is the Spring Release! Learn more about these new and exciting releases here!
Free Trial

Bengaluru, IN

Welcome to the Bengaluru User Group

Click the 'Join Group' button to get updates on group news and events.

Multi conditional statement

Neeta_Latwal
7 - Meteor

Hi All,

 

Please help with the function in alteryx

 

If sum of transactions is 0 then i want Pair off else Outstanding

 

IFF[sum of transactions] = "0" than "pair off" else "outstanding"

 

But this is not working in alteryx.

 

Thanks,

Neeta

3 REPLIES 3
s_koovery
5 - Atom

Try this

 

IF[sum of transactions] = "0" then "pair off" else "outstanding" endif

 

vkand5
5 - Atom

@Neeta_Latwal  I see that the formula has THAN instead of "THEN". Can you correct it and check? If it is still not solving, please send a sample dataset to help you debug.
Thanks!

kamal03
9 - Comet

Hi @Neeta_Latwal 

 

Please try this formula

 

IIF([sum of transactions]= 0, "pair off", "outstanding")

 

Note: If the sum of transaction is double don't use ( " " ) in comparison.