I have 2 columns of data. The first is essentially an ingredient list.
For example a values will be like 40% corn, 30% flour, 10% oil, 5% apples etc
The 2nd column is a dynamic list the user will update periodically on what I want to filter on
For example
Apples
Oranges
Flour
Quinoa
What I want to do is check the values in the 1st column to see if it contains any of the values in my 2nd column and keep those rows. My first challenge is the values in the first column are not standardized so the syntax (eg flour won't just be flour it'll be gluten free flour) & location (from the 1st ingredient listed to the last) of the values i want to filter constantly change. The 2nd is the list of values I want to filter on will constantly change as well.
Any ideas how I can do this? It'd be great if I could do some sort of conditional join tool