Free Trial

Alteryx Designer Desktop Discussions

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

IF Logic with multiple conditions

Glenlim
7 - Meteor

How do I convert excel formula: 

 

=IF(T-1 File="No","Investigate",IF(Portfolio Traded="No","No Investigation",IF(Security Traded="No","No Investigation","Investigate")))

 

Into Alteryx? 

3 REPLIES 3
Peachyco
11 - Bolide

You can use IF-ELSEIF-ELSE in the Formula Tool, like so:

 

IF [T1 File] = "No" THEN "Investigate"

ELSEIF [Portfolio Traded] = "No" THEN "No Investigation"

ELSEIF [Security Traded] ="No" THEN "No Investigation"

ELSE "Investigate"

ENDIF

Glenlim
7 - Meteor

I've tried the formula, but it's not pulling the right data unfortunately. 

DavidSkaife
13 - Pulsar

Hi @Glenlim 

 

Can you share some sample data and your expected output?

Labels
Top Solution Authors