Advent of Code is back! Unwrap daily challenges to sharpen your Alteryx skills and earn badges along the way! Learn more now.

Bengaluru, IN

Welcome to the Bengaluru User Group

Click in the JOIN GROUP button in Home to follow our news and attend our 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.