How to delete values of a cell if it is found in another coloumn

  • Thread starter Thread starter karty
  • Start date Start date
K

karty

Hi,

I have a list of about 10000 emails. They contain some good email
and some bad emails. I have figured out the bad emails and have a lis
of about 4000 - 6000 emails. Now i need to delete the bad emails fro
that 10000 email list.

Please help me to figure out this problem. If you can email m
please email me @ > (e-mail address removed)
 
Put your large (total ) list in column A and you list of bads in column C. In
B1 enter:

=MATCH(A1,C:C) and copy down. Then sort all three by column B. If column B
show #N/A then the entry is good. If column B shows a number the entry is
bad and should be removed.
 
I bet you wanted:

=MATCH(A1,C:C,0)

instead.

I think I'd use a slightly different formula:

=isnumber(match(a1,c:c,0))

If it's true, then there's a match. If false, then there's no match.

(It might be just a bit prettier than #n/a's and a bunch of numbers <vbg>.)
 

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