Sub cleanup()
LR = ActiveSheet.Range("A" & Rows.Count).End(xlUp).Row
'filter data
Cells.AutoFilter
Cells.AutoFilter Field:=1, Criteria1:="ID"
Range("A3:D" & LR).EntireRow.Delete
Cells.AutoFilter
MsgBox "Done'"
End Sub
myLastRow=Cells(Rows.Count,"A").End(xlUp).Row
For i=myLastRow to 2 Step -1
If Cells(i,"A").Value="ID" Then Rows(i).EntireRow.Delete
Next i