M
MiataDiablo
When I open my workbook read-only, the macro listed below runs. How
do I also have my custom command bar hide as well?
Sub ShowAffOnly()
Dim wsSheet As Worksheet
For Each wsSheet In Worksheets
If wsSheet.Name <> "Affiliation" Then wsSheet.Visible = xlVeryHidden
Next wsSheet
End Sub
do I also have my custom command bar hide as well?
Sub ShowAffOnly()
Dim wsSheet As Worksheet
For Each wsSheet In Worksheets
If wsSheet.Name <> "Affiliation" Then wsSheet.Visible = xlVeryHidden
Next wsSheet
End Sub