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

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