Yea short and sweet, but only works in 2007 or greater. Try this for 2003
Sub abc()
Dim Ptr As Long
Dim RangeToDelete As Range
Dim Lastrow As Long
Lastrow = Cells(Rows.Count, "a").End(xlUp).Row
With CreateObject("Scripting.Dictionary")
.CompareMode = 1
For Ptr = 2 To Lastrow
If Not .Exists(Cells(Ptr, "a").Value) Then
.Item(Cells(Ptr, "a").Value) = Cells(Ptr, "a").Value
Else
If RangeToDelete Is Nothing Then
Set RangeToDelete = Cells(Ptr, "a")
Else
Set RangeToDelete = Union(RangeToDelete, Cells(Ptr, "a"))
End If
End If
Next
a = .items
End With
If Not RangeToDelete Is Nothing Then
RangeToDelete.EntireRow.Delete
End If
End Sub
Bookmarks