Sub test()
Dim j As Integer
For j = Range("A1").End(xlDown).Row To 1 Step -1
If Cells(j, "J") = "" And Cells(j, "K") = "" Then Cells(j, "J").EntireRow.Delete
Next j
End Sub
[COLOR="Blue"]Sub[/COLOR] test()
[COLOR="Blue"]Dim[/COLOR] j [COLOR="Blue"]As[/COLOR] [COLOR="Blue"]Integer[/COLOR]
[COLOR="Blue"]For[/COLOR] j = Cells(Rows.count, "A").End(xlUp).Row [COLOR="Blue"]To[/COLOR] 1 [COLOR="Blue"]Step[/COLOR] -1
[COLOR="Blue"]If[/COLOR] sempty(Cells(j, "J")) [COLOR="Blue"]And[/COLOR] IsEmpty(Cells(j, "K")) [COLOR="Blue"]Then[/COLOR] Cells(j, "J").EntireRow.Delete
[COLOR="Blue"]Next[/COLOR]
[COLOR="Blue"]End[/COLOR] [COLOR="Blue"]Sub[/COLOR]