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

Combination of Data

mmustkee
10 - Fireball

Hi Team,

 

Could you please help me i n applying the formula "=IFERROR(IF(N5=Q5,"Dd",IF(Oo5=R5,"Rr","Ii")),"Dd")" for  the attached sheet?

 

Thanks in advance.

 

Thanks,

Mohammad Mustkeem

2 REPLIES 2
pedrodrfaria
13 - Pulsar

Hi @mmustkee 

 

I believe what you are trying to do would be this function below:

 

if isnull([N]) and isnull([Q]) and isnull([O]) and isnull([R]) then 'D' elseif
[N] = [Q] then 'D' elseif
[O] = [R] then 'R' else 'IN' endif

 

Please let me know if it does not work for you.

 

Pedro.

mmustkee
10 - Fireball

Great solution.

 

Thanks

Labels
Top Solution Authors