I am plum googled out. I have a worksheet where I need to find if values from one column exist in a range in another worksheet using VLOOKUP. The table_array has some values that contain wildcards. I cannot figure out how to get this to work.
EX (sorry I couldn't get the table to post right)
lookup value | table_array col 1 | table_array col 2 |
ab1234 | ab* | ok |
x456 | cbrt123 | ok |
cbrt123 | cbrt7000 | ok |
cbrt7000 | mod | ok |
mod | x* | ok |
ab7890 | ||
ab9876 | ||
x5677 | ||
x1234145 |
I need the result to show that 'ab1234', 'ab7890', 'ab9876', 'x5677' and 'x1234145' exist in the table_array because it is matching to "ab*" or 'x*'. I found many examples where the wildcard is in the lookup value, but none where the wildcard is in the
table_array. Anyone know how to do this?