Office Version 2003 ( till I get my 2010 sorted).
The Loop works, no errors, it just will not DeleteRow with that particular 0.000 Value.
No matter what I change the Value to, 0.0 or 0. it just won’t Delete
Everywhere else this method of deleting rows I don’t need works fine.
Even a Find and or Replace does not seem to pick it up.
??
Thanks
The code is,
Sub DELETE_ROWS() Sheets(“DELETEROW”).Select Sheets(“DELETEROW”).Range(“H4”).Select Selection.Offset(3, 0).Select ‘*Down Do Until ActiveCell.Value = “” If ActiveCell.Value = ActiveCell.Value = “0.000” Then ActiveCell.EntireRow.Delete ActiveCell.Offset(-1, 0).Select End If ActiveCell.Offset(1, 0).Select Loop Sheets(“DELETEROW”).Range(“A2”).Select ActiveWorkbook.Save End Sub