Home |
Search |
Today's Posts |
#4
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
I have a command button to where I would like to specify which sheet I would
like to unhide. Example the sheet I would like to unhide is called Extra Earned Income Method 2. Thanks "Mike H" wrote: Hi, Try this code. Ut hides all sheets except sheet1 on closing and unhides then if macros are enabled. Sheet 1 should contain a suitable message to explain that macros must be run to view sheets. Private Sub Workbook_BeforeClose(Cancel As Boolean) Dim ws As Worksheet For Each ws In ThisWorkbook.Worksheets If ws.Name < "Sheet1" Then ws.Visible = xlVeryHidden End If Next ws End Sub Private Sub Workbook_Open() Dim ws As Worksheet For Each ws In ThisWorkbook.Worksheets ws.Visible = True Next ws End Sub Mike "Phendrena" wrote: Hi, I'm a complete novice with VB, however is it possible to use VB to unhide a worksheet or worksheets if the script is run when the workbook is opened? Thus if the script/macro isn't run then nothing is visable. Thanks, |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
hide unhide rows -Protected sheet | Excel Discussion (Misc queries) | |||
Hide/Unhide after protect sheet | Excel Discussion (Misc queries) | |||
How to hide/unhide a sheet? | Excel Discussion (Misc queries) | |||
How to hide/unhide sheet Tabs in Excel 2007? | Excel Worksheet Functions | |||
Sheet / Hide & Unhide for editing only | Excel Programming |