Advent of Code is back! Unwrap daily challenges to sharpen your Alteryx skills and earn badges along the way! Learn more now.

Alteryx Designer Desktop Discussions

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

Need Help In Match Funtion

vishwa1979
7 - Meteor

Hi,

 

I have a data with two columns Policy Holder Name and Instrument Given By.

If cells in both these columns match the Flagging column should reflect as "Match" Else "Miss Match".

 

Problem is some were there is full name in one column and in other there is only first and last name.

In some column there is more space reflecting between the name.

Can I get help to find some formula to get this mapped as Match.

 

Policy Holder NameInstrument Given By
Kirti Atul ParikhKIRTI PARIKH
SAURABH N SANGHAVISAURABH N  SANGHAVI
VISHAL MALIKVISHAL  MALIK

 

Thanks in advance

 

 

 

2 REPLIES 2
Kaustubh17
9 - Comet

Hi @vishwa1979 ,

 

You can use the fuzzy match tool to execute the task. I will suggest make your data clean in some case i can see some names are small letter make a defined case upper case or lower case(for this activity you can use data cleansing tool) then use the fuzzy match tool. Please follow the below Alteryx help document.

https://help.alteryx.com/20231/en/designer/tools/join/fuzzy-match-tool.html

 

Best,

Kaustubh

gawa
16 - Nebula
16 - Nebula

@vishwa1979  As @Kaustubh17 said, the Fuzzy Match tool may help you when matching criteria cannot be precisely defined.

 

If you just need to compare first name and last name for matching, I suggest 2 methods.

image.png

1st method is to parse data into row and get first name and last name, and compare them by the Join tool. By doing so, you will get mathc result like this.

image.png

 

Another method is to use Regex function to compare first name and last name, if you are already familiar with Regex concept.

image.png

 

If you are using Designer 2023.2 or later, GetLeft() and GetRight() functions can be used instead of Regex function to do the similar approach.

Labels