Hello,
I have a workbook that contains 87 tabs and all of the are hidden except 1. I need to modify my current code to allow 7 tabs to show at all times.
Here is the code I have setup currently:
Private Sub Workbook_Open()
Dim ws As Worksheet
For Each ws In Worksheets
If ws.Name <> "Associate Skill Set" Then
ws.Visible = xlSheetVeryHidden
End If
Next ws
End Sub
Is there a way to modify this to allow more tabs to be visible?
Thanks
I have a workbook that contains 87 tabs and all of the are hidden except 1. I need to modify my current code to allow 7 tabs to show at all times.
Here is the code I have setup currently:
Private Sub Workbook_Open()
Dim ws As Worksheet
For Each ws In Worksheets
If ws.Name <> "Associate Skill Set" Then
ws.Visible = xlSheetVeryHidden
End If
Next ws
End Sub
Is there a way to modify this to allow more tabs to be visible?
Thanks