How to check a column so that no duplicate number?

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
 
A

Alan Beban

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
 
Top