VBA code to hide multiple tabs at workbook close

Spartan300

Board Regular
Joined
Jul 1, 2008
Messages
71
Hello,

I currently have the following code: -

Private Sub Workbook_BeforeClose(Cancel As Boolean)
Dim ws As Worksheet
ActiveWorkbook.Unprotect Password:="AmenhotepIV"
Sheets("Sheet1").Visible = False
For Each ws In ActiveWorkbook.Worksheets
If UCase(ws.Name) <> "SHEET1" Then ws.Visible = True
ActiveWorkbook.Protect Password:="AmenhotepIV"
Next ws
ThisWorkbook.Save
End Sub

And was wondering how I can have the code hide more than one tab if it is visable when the workbook is closed?

Many thanks
 
Try like this

Code:
Sub Hide_button()
Dim ws As Worksheet
For Each ws In ActiveWorkbook.Worksheets
    With ws
        If .Tab.Color = vbRed Then .Visible = xlSheetHidden
    End With
Next ws
End Sub
 
Upvote 0

Excel Facts

Which Excel functions can ignore hidden rows?
The SUBTOTAL and AGGREGATE functions ignore hidden rows. AGGREGATE can also exclude error cells and more.

Forum statistics

Threads
1,221,572
Messages
6,160,575
Members
451,656
Latest member
SBulinski1975

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top