Well, duplicates are afterall by "definition"
the 2nd, 3rd, 4th, etc instances of for example,
in this case, names occuring in the NAME column.
The method suggested will give you the list of duplicates.
(which was your objective and subject line?)
Uniques are the first instances of names in the column
(If you want to keep this uniques list as well,
do a copy > paste special > values on another sheet
before you delete the list)
Another way to "tag" duplicates of the names
using a helper column, assuming the names are
in col A, A2 downwards:
Put in B2:
=IF(COUNTIF($A$2:A2,A2)>1,"Name is duplicate of cell
"&ADDRESS(MATCH(A2,$A$2:A2,0)+1,COLUMN(A2),4),"")
copy down col B
Col B will identify duplicates found in col A, if any,
and indicate the cell ref for you to check / work on.
You could use Data>Filter>Autofilter on col B to filter out
systematically the duplicate rows for your checks.
--
hth
Max
-----------------------------------------
Please reply in thread
Use xdemechanik <at>yahoo<dot>com for email
----------------------------------------------------------------------------
Steve Masters said:
Max thanks, but in trying this with a dummy spread sheet it appears that this happens:
The first duplicate record of every duplicate record get selected and by
deleting the "unique" rows I lose a record I want. Am I doing something
wrong???? or is this the way your way works?????