Category Name | Search String |
Indoor Plants | Alpha |
Outdoor Plants | Beta |
Vegetable Plants | Gamma |
The resulting formula field [Line of Business] in Alteryx would look like this:
IF Contains([Search Field], "Alpha" THEN "Indoor Plants"
IF Contains([Search Field], "Beta" THEN "Outdoor Plants"
IF Contains([Search Field], "Gamma" THEN "Vegetable Plants"
ELSE "Uncategorized"
ENDIF
Hope I explained that well! Has anyone come across a situation like this before? I've hit the wall!! Thanks in advance 🙂
Solved! Go to Solution.
Hi @nmetier1 ,
If I understand your question correctly, I think that a Find & Replace tool can help you in this instance. As long as the mapping document gets updated, the find & replace tool will look in any part of the Search field to find the Search string and then it will append the category name.
Those that don't find a match will have a null value in the category name column, which you can replace with an uncategorised value with a formula tool.
Cheers,
Angelos
Thank you so much Angelos!! Works like a charm 😀