Another option...
Here's a routine that "automatically" deletes duplicate rows. (Nothing "manual" involved)
Sub Delete_Duplicates()
Application.ScreenUpdating = False
Application.Goto Reference:="Phone_Column"
ActiveCell.Offset(1, 0).Activate
Do
curcell = ActiveCell.Value
If curcell = "" Then Exit Sub
Range("inp"

.Value = curcell
num = Range("dbnum"

.Value
If num > 1 Then
ActiveCell.EntireRow.Delete
ActiveCell.Offset(-1, 0).Activate
End If
ActiveCell.Offset(1, 0).Activate
Loop
End Sub
This routine utilizes the DCOUNTA function. The easiest way to set this up - and understand more about Excel's POWERFUL database functions, is for me to send you the file.
If you would like the file, just email me, and I'll send the file via return email.
Regards, ...Dale Watson dwatson@bsi.gov.mb.ca