How to check a column so that no duplicate number?

  • Thread starter Thread starter Rocky
  • Start date Start date
R

Rocky

I have a spreadsheet that has 3500 items and I like to check the column that
no duplicate UPC code exist on the column. What is the simple way to do
that.

Thanks

Rocky
 
If the functions in the freely downloadable file at
http://home.pacbell.net/beban are available to your file

=COUNTA(A:A)=ArrayCount(ArrayUniques(A:A))
will return TRUE if there are no duplicates, FALSE otherwise; assuming
that you do not consider ok and OK as duplicates. If you do consider
them as duplicates you can use
=COUNTA(A:A)=ArrayCount(ArrayUniques(A:A,False))

Alan Beban
 

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