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

Is there a way to join using contains

lliberm01
6 - Meteoroid

I have a file i would like to append columns to if it contains certain words that match.  Is this possible to do using the main dataset and a separate file with a column of those matching "contains" criteria?  If not, what is the best workaround for this other than a ton of nested filters to get to each scenario individually.

3 REPLIES 3
alexnajm
18 - Pollux
18 - Pollux

It is not possible with the Join tool - you’ll have to look at the Find Replace tool matching to “Any Part of Field”.

 

You could also do Fuzzy Match, but I wouldn’t go down that route unless necessary!

Qiu
21 - Polaris
21 - Polaris

@lliberm01 
Another possible is to join the two data streams with Append tool then can use the Formula tool to "contains" criteria if your data is not so big.

aatalai
15 - Aurora

@lliberm01 you could filter out the rows of data you don't want with the following condition 

 

If contains([field],"criteria"] then "T" else "F" endif

 

and then use the join tool. Hope this helps

Labels
Top Solution Authors