I have two columns, column B with 100 items, and col A with 3000. What I want to do is figure out if a cell within col B is contained within a cell in Col A.
I want to use a formula like this in C:
=SEARCH(B1,$A$1:$A$3000) and return true/false or some sort of value.
So basically col B will look like this:
cat
dog
mouse
And col A looks like this:
hamster feed
bird cage
cat food
The cell which corresponds with B1, which contains cat will return true because "cat" exists within col A, and the dog and mouse cells are false since they don't exist.
I want to use a formula like this in C:
=SEARCH(B1,$A$1:$A$3000) and return true/false or some sort of value.
So basically col B will look like this:
cat
dog
mouse
And col A looks like this:
hamster feed
bird cage
cat food
The cell which corresponds with B1, which contains cat will return true because "cat" exists within col A, and the dog and mouse cells are false since they don't exist.