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