Hi,
Ok, this seems pretty simple, unless I'm missing something, this should do it.
Sub DeleteZero()
Dim intEnd As Integer
intEnd = 224
Range("C6").Select
Do Until ActiveCell.Row = intEnd
If Int(ActiveCell.Value) = 0 Then
Range(ActiveCell.Row & ":" & ActiveCell.Row).Delete
intEnd = intEnd - 1
Else
ActiveCell.Offset(1, 0).Select
End If
Loop
End Sub
This will not go to row 224 if you are deleting rows, but reduce the end row if rows are deleted.
Peace,
Joshua