So I know I can use regular expressions to do something like :
=MATCH("hello.*", $b$2:$b$10000, 0)
But if i have two collums, b and c, and I want to find if the word in the cell at c is included, whole or partially, in list b. For example:
B C
Helpxo Help
12345-075 12345
123 123
So I want to be able to put a formula in D that gives positive matches for all of those examples. I tried:
=MATCH(C2.*, $b$2:$b$10000, 0)
But, it didn’t work.
EDIT: Found it here’s the code:
=MATCH(C2&".*", $b$2:$b$10000, 0)