Missed the Q4 Fall Release Product Update? Watch the on-demand webinar for more info on the latest in Designer 24.2, Auto Insights Magic Reports, and more!
Free Trial

Alteryx Designer Desktop Discussions

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

I need to compare two email fields in a row and output if it is matching or not

Padma_
7 - Meteor

What tools/ regex can I use here, I have attached image for details.
I need to compare two email fields in a row and output if it is matching or not

3 REPLIES 3
ChrisTX
16 - Nebula
16 - Nebula

Use a Formula tool to create a new field [Output that I need], data type V_String

 

IF [Email ID 1] = [Email ID 2] THEN "Matched" ELSE "Not Matched" ENDIF

 

To understand the Alteryx basics, at the top of this page try

  Learn > Academy > Learning Paths and Interactive Lessons

 

And review the Functions page:  Functions (alteryx.com)

 

Chris

JosephSerpis
17 - Castor
17 - Castor

Hi @Padma_ from your example a formula tool with a If formula should give you the desired results.

 

 

If [Email ID 1] = [Email ID 2] Then "Matched" Else "Not Matched" Endif

 

 

Padma_
7 - Meteor

Hi All,

I tried the same, it was erroring hence I posted here, I just realized, I made mistake with the data upstream.

I fixed it it is working.

Thanks All.

Labels
Top Solution Authors