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.
SOLVED

Filter tool with wildcard

cmdaglish
6 - Meteoroid

Hi, 

 

I'm trying to compare a list of names from two different datasets to determine if they are the same person. I've done a Text to Columns using a space as the delimiter on the Source data. 

 

The Fuzzy Match tool is proving too inaccurate for the case below and therefore I want to use a filter tool to remove them from my data and class them as the same person. 

 

Source1Source2Target
JohnDoeJ A Doe

 

Is there a way to write something similar to 

 

Contains([Target], Left([Source1],1) + " " + *Wildcard* + " " + [Source2])

 

Any help would be appreciated. 

 

Thanks!

4 REPLIES 4
atcodedog05
22 - Nova
22 - Nova

Hi @cmdaglish 

 

One of the ways is to use starts with and ends with.

 

Workflow:

atcodedog05_0-1632214863772.png

 

Hope this helps : )

 

atcodedog05
22 - Nova
22 - Nova

Hi @cmdaglish 

 

Another method is by using REGEX_Match.

 

Workflow:

atcodedog05_0-1632215015319.png

 

Hope this helps : )

 

cmdaglish
6 - Meteoroid

@atcodedog05 amazing, thanks!

atcodedog05
22 - Nova
22 - Nova

Happy to help : ) @cmdaglish 

Cheers and have a nice day!

Labels
Top Solution Authors