We are celebrating the 10-year anniversary of the Alteryx Community! Learn more and join in on the fun here.
Start Free Trial

Alteryx Designer Desktop Discussions

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

IFF Statement with AND OR

Iamironman
6 - Meteoroid

Need a little help converting a Excel Formula to an Alteryx Expression.

The formula from Excel.

 

=IF(AND(CM3<>TRUE,OR(CD3,CK3)),TRUE,FALSE)

 

My interpretation is 

IIf ([Auto Exclude]!='True' AND [No Consumption last 24 months] OR [<$10K],'True','False'

 

I need a little guidance on the syntax... or if the formula for alteryx needs to broken up into multiple if statements than can work too. Just a little stuck here.

 

Thank you.

3 REPLIES 3
binuacs
21 - Polaris

@Iamironman 

IIf([Auto Exclude]!='True' AND ([No Consumption last 24 months] = 'True' OR [<$10K] = 'True'),'True','False')
Iamironman
6 - Meteoroid

I am getting an invalid operator message

 

Untitled.png

binuacs
21 - Polaris

@Iamironman Can you check your data type of the field [Auto Exclude]? also if possible can you screen shot your formula tool with data?

Labels
Top Solution Authors