Just to clarify : I don\'t want to remove duplicates rows, I want to remove Duplicate Cells within a row
So here\'s a classic address table, and in some row there\'s
Maybe this in your loop:
If Range("A1").Offset(counterRow,1) = Range("A1").Offset(counterRow,2) Then Range("A1").Offset(counterRow,2).Clear End If