Hello All,
Earlier today TMShucks had provided me with the following code. (Thank you again TMS for your help!)
This code compares A1 to B1 and if equal, copies A1&B1 to Sheet2 and then deletes row1 from Sheet1.
It also comes back with a handy msg box that tells me how many duplicates were removed, and how many unique records remain.

Sub del_copy_msgbox_TMS()

Dim lLR As Long
Dim lNR As Long
Dim i As Long
Dim lDelete As Long: lDelete = 0
Dim lUnique As Long: lUnique = 0

Application.ScreenUpdating = False
With Sheets("Sheet2")
    lNR = .Range("A" & .Rows.Count).End(xlUp).Row + 1
End With

lLR = Range("A" & Rows.Count).End(xlUp).Row
For i = lLR To 2 Step -1
    If Range("A" & i) = Range("B" & i) And Range("A" & i) <> "" Then
        Range("A" & i).EntireRow.Copy Sheets("Sheet2").Range("A" & lNR)
        lNR = lNR + 1
        Range("A" & i).EntireRow.Delete
        lDelete = lDelete + 1
    Else
        If Range("A" & i) <> "" Then
            lUnique = lUnique + 1
        End If
    End If
Next 'i
Application.ScreenUpdating = True

MsgBox "Unique records remaining: " & lUnique & vbCrLf & _
       "Deleted records : " & lDelete & vbCrLf & _
       "Deleted Records copied to 'Sheet2' ", , "Counters"

End Sub
I now need to be able to adapt this code to compare rows. Example, does A1 & B1 = A2 & B2. If so, copy row 2 to Sheet2 then delete row 2 from Sheet1.
I also need to have this work from TOP to BOTTOM as the the first line will contain information that I want to keep.
The current code (above) works from the bottom up. (would also like to get that working from TOP down if possible)
Since I have no idea how the above code works (was a complete re-write of my code) I can not begin to try anything to get this to work. I already tried getting it to run from top down and failed miserably.

Here is an example workbook to work from that includes the above code, and my original code that worked from TOP to bottom. (Very different code)
Also does not contain all columns as that has sensitive data. :-)
Del_Dup Test List.xls

Any more help would be greatly appreciated!

Thanks Again!