Hi trying to obtain the following:
Search for both strings from Field1 (AB and 12345.0) in Field2 and return Field3
| Field2 | Field3 |
| CD blah blah blah | A |
| AB blah blah-12345.0 | B |
Desired output:
Previously in excel I would do something using wildcards like:
VLOOKUP("*"&"AB"&"*"&"12345.0"&"*",'Sheet1'!B2:F100,5,FALSE)
not sure how to achieve the same in alteryx though...any suggestions appreciated, thanks!