Let’s talk Alteryx Copilot. Join the live AMA event to connect with the Alteryx team, ask questions, and hear how others are exploring what Copilot can do. Have Copilot questions? Ask here!
Start 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
14 - Magnetar

Hi @Glenlim 

 

Can you share some sample data and your expected output?

Labels
Top Solution Authors