I have to delete the row if two column values are same. If Column B and Column D Values are same Then I have to delete that row. I am using one method but it is taking so much of time. Is there any other way to do it
Dim i As Long
For i = lngLstRow To 1 Step -1
If Range("B" & i).Value = Range("D" & i).Value Then
Rows(i).EntireRow.Delete