Dave,
Sub Hide_Rows()
Dim RNG As Range
Dim CL As Range
Dim R As Long
On Error GoTo e:
Set RNG = Cells(Application.Match(0, Range("A:A"), 0), "A")
R = ActiveSheet.Cells(Rows.Count, "A").End(xlUp).Row
For Each CL In Range("A1:A" & R)
If CL.Value = 0 And CL.Value <> "" Then
Set RNG = Application.Union(RNG, CL)
End If
Next
RNG.EntireRow.Hidden = True
e:
End Sub
--
Regards,
Soo Cheon Jheong
Seoul, Korea
_ _
^¢¯^
--