I've done lots of searching online and on this board and I am still unable to get the solutions that I've found to do what I want them to do.
I need a statement that will compare two cells and see if they match. However, one of the cells will contain the "Maker" and the "Model Number". The second cell will only contain the "Model Number".
Lets use A1 and B1.
A1 will have "Test 123"
B1 will have "123"
I would like the final result of the formula to say True because A1 does contain B1. I need to only use Cell references.
I've tried something like this but I can't seem to figure it out. I've used 1 and 0 to make it simple until I've figured it out.
I need a statement that will compare two cells and see if they match. However, one of the cells will contain the "Maker" and the "Model Number". The second cell will only contain the "Model Number".
Lets use A1 and B1.
A1 will have "Test 123"
B1 will have "123"
I would like the final result of the formula to say True because A1 does contain B1. I need to only use Cell references.
I've tried something like this but I can't seem to figure it out. I've used 1 and 0 to make it simple until I've figured it out.
Code:
=if(A1="*"&B1&"*",1,0)