Hello stroudy,
The macro below has been added to a button in the attached workbook. This will remove the duplicates in columns "A" and "B".
Sub RemoveDuplicates()
Dim Cell As Range
Dim Rng As Range
Dim RngEnd As Range
Dim Wks As Worksheet
Set Wks = ActiveSheet
Set Rng = Wks.Range("A2")
Set RngEnd = Wks.Cells(Rows.Count, Rng.Column).End(xlUp)
If RngEnd.Row < RngRow Then Exit Sub Else Set Rng = Wks.Range(Rng, RngEnd)
For Each Cell In Rng
If Cell = Cell.Offset(0, 1) Then
Cell.Resize(1, 2).Value = ""
End If
Next Cell
End Sub
Bookmarks