I have two columns into two separate sheets. In the first, C1
, I have 1000 rows containing text, in the second column C2
I have 2000 rows also containing text.
What I need to do is to select all the C2
rows which contain at least (exactly) all the text contained in any of the C1
rows.
For instance, suppose data are like this:
C1 C2
Eval 1 Eval 101 doc
Eval 1 Eval 1 project
Eval 100 Eval 1 doc
Ev 1 Eval 19
Eval1 Ev 2
In the end I would like to select only the following cells in the second sheet:
C2
Eval 1 doc
Eval 1 project
I am not very familiar with Excel, but I produced the following function:
=IF(ISNUMBER(FIND(<C1 cell>, <C2 cell>)),"OK", "Not OK")
and then it should just be a matter of filtering data according to "OK".
The problem is that the function works only for single C1
values, but not if I select the entire C1
column as I need to..
I also thought to use VLOOKUP, but then what I need is not the C2
values perfectly matching with C1
values but, as I said before, the ones that at least contain the entire text of the C1
cells..
Any suggestion would be highly appreciated,
Stefano