Sub HideRows()
Dim iRow As Long
iRow = 1 'start at first row
Do While Cells(iRow, 1) <> ""
If Cells(iRow, 1) < 2 Then
Rows(iRow & ":" & iRow).Hidden = True
End If
iRow = iRow + 1
Loop
End Sub
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.