Sub test()
Dim i As Long, lRow As Long
lRow = Cells(Rows.Count, "A").End(xlUp).Row
With Application
.ScreenUpdating = False
For i = lRow To 1 Step -1
If IsError(.Match(0, Range("A" & i & ":D" & i), 0)) Then
Rows(i).EntireRow.Delete
End If
Next
.ScreenUpdating = True
End With
End Sub