Bring your best ideas to the AI Use Case Contest! Enter to win 40 hours of expert engineering support and bring your vision to life using the powerful combination of Alteryx + AI. Learn more now, or go straight to the submission form.
Start Free Trial

Alteryx Designer Desktop Discussions

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

Get names from 3 columns using IF loop

Desaisid
7 - Meteor

Please give me formula for my Answer Column in Formula tool

 

Class 1Class 2Class 3Answer Column
A EE
 B B
F CC
D  D
GH H

 

I have added this formula for Answer Column which is not working, Could you please let me know the correct formula so I get the Answer column data from fir 3 columns.

 

IF IsEmpty([Class 3]) Then [Class 2]
Elseif IsEmpty([Class 2]) Then [Class 1]
Else [Class 1]
Endif

 

2 REPLIES 2
binuacs
21 - Polaris

@Desaisid Try the below formula

 

IF !IsEmpty(trim([Class 3])) Then [Class 3]
Elseif !IsEmpty(Trim([Class 2])) Then [Class 2]
Else [Class 1]
Endif
Desaisid
7 - Meteor

Thanks

Labels
Top Solution Authors