Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Dim i As Integer
i = 2
Do While Range("A" & i).Value <> ""
If Range("A" & i).Value = "4" Then
Rows(i & ":" & i).EntireRow.Hidden = True
End If
i = i + 1
Loop