Formula aces, I need your help!
I have a spreadsheet with a bunch of names in a particular column (lets call it A1). Some cells in this column have just one name (eg Brown, Bert (Mr)), where as others have several names (eg Green, Sam (Mrs), White, Ned (Mr), Black, Mary (Prof)). Layout of names in the cells is as shown in my examples.
I need to search the data in column A1 and find all the surnames that match the ones I have on a separate list. I'd like the formula to find instances of the names and put 'true' in a second column. If it find two names on the list in one particular cell, it needs only return 'true' once.
I tried to use =IF(OR(A1="Brown",A1="Green",A1="White"),"TRUE","FALSE") but it returned 'FALSE' each time, and it's obviously not correct. I can see the names are there!
I've also tried 'if ... then' and 'find' formulas but I'm getting myself in a right knot with the syntax.
Can anyone help before I throw the whole lot out the window?!