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.

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