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 ProtectSheet()
Dim l_wksWorkSheet As Worksheet
For Each l_wksWorkSheet In ThisWorkbook
l_wksWorkSheet.Protect "PasswordHere"
Next l_wksWorkSheet
End Sub
Sub UnProtectSheet()
Dim l_wksWorkSheet As Worksheet
For Each l_wksWorkSheet In ThisWorkbook
l_wksWorkSheet.Unprotect "PasswordHere"
Next l_wksWorkSheet
End Sub