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.

Formula to identify unmatched column sources

wonka1234
10 - Fireball

Hi,

 

I am trying to identify from which field the unmatched source is coming from.

 

I am comparing the sum columns and it tells me which match and which dont .

 

However for the unmatched, can I identify where it is missing?

 

wonka1234_0-1681145769831.png

 

please see attached workflow.

2 REPLIES 2
nagakavyasri
12 - Quasar

It is comparing Datasource1_field1 with Datesource2_field2, as Datesource2_field2 is empty for few records, the result is showing as 'Unmatched'

ArnaldoSandoval
12 - Quasar

Hi @wonka1234 

 

Try modifying your formula to:

 

if Name = Process
then 'Match'
elseIf IsNull(Name) Then 'Unmatched, missing in datasource 1'
else 'Unmatched, missing in datasource 2'
endif

 

It worked for me 👍

 

HTH

Arnaldo

 

Labels
Top Solution Authors