-----Original Message-----
Is there a function that can locate duplicate values in a
column? I am currently sorting and manually looking
through the column for duplicates.
.
not sure if it is the best method but....
you could try putting a formula in the next column (assume
yr data is in A1:A100) put the following formula in B1
and copy down
=COUNTIF(A$1:$A8,$A8)
copy this formula into all cells B1 to B100. The formula
result will be '1' if not a duplicate. If it is
duplicated it will be '2' or above. Sort it by column B
to get all the '1' values to the top then delete all the
rows that have 2 or greater.