Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hi,
little to no knowledge of VBA. I need some script that will automatically hide sheet x when I close the file. I then want to be able to unhide the sheet in the normal way when re-opening the file via Format Sheet Unhide. Thanks |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Try:
'============= Private Sub Workbook_BeforeClose(Cancel As Boolean) Dim SH As Worksheet Set SH = Me.Worksheets("Sheet3") '<<==== CHANGE SH.Visible = xlSheetHidden End Sub '<<============= This is workbook event code and should be pasted into the workbook's ThisWorkbook module *not* a standard module or a sheet module: Right-click the Excel icon on the worksheet (or the icon to the left of the File menu if your workbook is maximised) Select 'View Code' from the menu and paste the code. Alt-F11 to return to Excel. --- Regards, Norman "Andy" wrote in message ... Hi, little to no knowledge of VBA. I need some script that will automatically hide sheet x when I close the file. I then want to be able to unhide the sheet in the normal way when re-opening the file via Format Sheet Unhide. Thanks |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Macro to Save File to specific location when closing | Excel Discussion (Misc queries) | |||
how do I hide scroll bars on specific sheets within a workbook | Excel Discussion (Misc queries) | |||
hide personal.xlsb file without closing | Excel Discussion (Misc queries) | |||
Excel closing event of a specific file | Excel Programming | |||
How Can I hide sheets when closing the app? | Excel Programming |