Search range for text not in another range

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I want to find all cells in column A that do not have an identical matching
cell in column C. Ideally I'd then like to list these in column D. Columns A
and C only contain text.
 
Assuming your first data line starts in cell A1, in column D1 use the formula
=exact(A1,C1). This will return a true or false value.
 
Thanks Reneets for your quick reply - I should have made it clear that the
matching cell in column C could be anywhere in that column (which is a subset
of the data in col A). Your formula only compares A and C cells in the same
row. Anyway, I've now found the solution:
In column D (D2:D538) I copied
=VLOOKUP(A2:A$538,rangename,1,FALSE)
which placed the col A value where it matched exactly and #N/A everywhere
else.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top