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.
for each ws in worksheets
with ws
if .visible <> xlsheetvisible then
.visible = xlsheetvisible
end if
end with
next
Sub UnhideAllWorksheets()
Dim ws As Worksheet
For Each ws In Worksheets
ws.Visible =
True
Next ws
End Sub