Hi Leith
I am really new to VBA Programming, and seems to struggling with connecting
the dots at this point.
The macro works really well, but I was wondering if I could add exclusionary
criteria. I want the Macro to ignore a specific sheet when it is going
through the 15 sheets in workbook.
Thanks
John
--
Hisam A Nhoj
"Leith Ross" wrote:
Hello tcbootneck,
Add the following code to your Workbook's Open event procedure.
Dim Wks As Worksheet
For Each Wks In ThisWorkbook.Worksheets
If Wks.Visible = xlSheetVisible Then Wks.Visible = xlSheetHidden
Next Wks
This will check each Worksheet and test if it is visible. If it is
visible then the macro will hide the Worksheet. Your final code result
will look like this...
Private Sub Workbook_Open()
Dim Wks As Worksheet
For Each Wks In ThisWorkbook.Worksheets
If Wks.Visible = xlSheetVisible Then Wks.Visible = xlSheetHidden
Next Wks
End Sub
Sincerely,
Leith Ross
--
Leith Ross
------------------------------------------------------------------------
Leith Ross's Profile: http://www.excelforum.com/member.php...o&userid=18465
View this thread: http://www.excelforum.com/showthread...hreadid=553001