cell lookup

M

MLK

I need to be able to automate looking up values from one column to see if
they exist within a text string in another column.

Ie, cell A3 may contain " C3 ", cell A4 may contain " IPO ", etc etc. I
need to be able to find all instances of values from column A and see if they
are embedded somewhere in column C (column C may contain sentences)

Thanks, Mary-Lou
 
E

excelent

put this in fx. D1 and copy down (no match give an error)

="First Match of "&A1&" found in cell C"&MATCH("*"&A1&"*",$C$1:$C$1000;0)



"MLK" skrev:
 
M

MLK

Hi, I tried this and it's not quite what I'm looking for.

I need to find all occurences in column C that contains the lookup values in
Column A. There most likely will be more than one occurance. ie if cell
a3 contains " C3 ", I need to identify ALL the rows in column C that contain
C3 somewhere in a text string. Then I need to do the same for all the values
that may reside in column A and compare them again to all the rows.

Column A would contain the BASE data to lookup in Column C.

Thanks, Mary-Lou
 
Top