Sub DeleteRows()
Dim i As Long, Lastrow As Long
Lastrow = Range("M65536").End(xlUp).Row
For i = Lastrow To 1 Step -1
If Cells(i, "M").Value = 0 And Cells(i, "N").Value = 0 Then
Rows(i).Delete
End If
Next i
End Sub
I couldn't figure out how to have it look in both M and N columns.
This is what I was using:
Range("M1:N1").Select
Do Until IsEmpty(ActiveCell.Value)
If ActiveCell.Value = "0.00" Then
ActiveCell.Row.Delete
Else 'Do nothing
'Move down one cell
ActiveCell.Offset(1, 0).Select
Loop