Finding duplicates in a column

  • Thread starter Thread starter fergusor
  • Start date Start date
F

fergusor

Hi Guys,

I've got alist of 23000 numbers in column A, is there a way I ca
determine whether there are any duplicates (I don't need to know wha
the duplicates are).

Thanks,
Richard
 
hi
assuming the data in A1:A23000

enter in

B1: =if(countif($A$1,$A$23000,A1)>1,"duplicate","") and copy the
formula down upto B23000

use autofilter to findout the list of "duplicate"

-via135
 
via135 said:
hi
assuming the data in A1:A23000

enter in

B1: =if(countif($A$1,$A$23000,A1)>1,"duplicate","") and copy the
formula down upto B23000

use autofilter to findout the list of "duplicate"

-via135
I've tried using this formula and I get an error that states 'Yo
entered too many arguments for this function'.

Can anyone help with this?

The values are in columns A1 to A23000, and the values are like 1001
1002, 1003, 1004...

Thanks,
Richard
 
Change the formula to:

=if(countif($A$1:$A$23000,A1)>1,"duplicate","")

i.e. the comma should be a colon to indicate a range.

Hope this helps.

Pete
 
fergusor said:
I've tried using this formula and I get an error that states 'You
entered too many arguments for this function'.

Can anyone help with this?

The formula has a slight error. It should read
=if(countif($A$1:$A$23000,A1)>1,"duplicate","")
(the first comma in the formula should have been a : )
 
I've just realised from this post and another that although postings on
Excelforum show up in Google Groups, the reverse is not the case, so my
earlier posting was invisible to those who use Excelforum.

Should I therefore ignore any postings from Excelforum and not bother
to respond to them?

Any insights?

Pete
 

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