Hi Tracy
I have some examples of how to higlight Duplicates on my WebSite under "Handy Hints" that I think you may find useful.
You could also use the "Advanced Filter" (Found under Data>Filter) to filter out unique entries in each Column.
If none of the above suit your needs here is a macro that will copy all Duplicates to a new sheet. If you want I could modify it to go through each Column. Let me know. This particular code works on Column A.
Sub CopyUniquesToNewSheet()
'Written by OzGrid Business Applications
'www.ozgrid.com
''''''''''''''''''''''''''''''''''''''''''
'Create a Worksheet
'Extract unique entries only
'Then copy the entire rows to
'the new sheet
''''''''''''''''''''''''''''''''''''''''''
Dim RUniqueCells As Range
'Add a new sheet and name it
'If already exists then rename it
On Error Resume Next
Sheets.Add().Name = "Unique Copies"
If ActiveSheet.Name <> "Unique Copies" Then
ActiveSheet.Name = "Unique Copies" & Sheets.Count
End If
On Error GoTo 0
With Sheet1
'Set Range variable to all entries
Set RUniqueCells = Range(.Range("A1"), .Range("A65536").End(xlUp))
'Advance filter to remove duplicates
RUniqueCells.AdvancedFilter _
Action:=xlFilterInPlace, unique:=True
.UsedRange.SpecialCells(xlCellTypeVisible).Copy _
Destination:=ActiveSheet.Range("A1")
.ShowAllData
End With
Application.CutCopyMode = False
'Release memory
Set RUniqueCells = Nothing
End Sub
Dave
OzGrid Business Applications
Dave,
As always you have incredible knowledge of these issues and I appreciate your assistance once again!
I am still working out what my employer is going to do regarding training. Not sure of internet/email based yet, but don't give up.
Thanks again,
Tracy