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
 
Back
Top