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.
Sub Switch_view()
ActiveSheet.Unprotect password:=whatever
Rows("11:33").Select
Selection.EntireRow.Hidden = True
Range("C2:E2").Select
ActiveSheet.Protect DrawingObjects:=True, Contents:=True, Scenarios:=True, password:=whatever
End Sub