ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Programming (https://www.excelbanter.com/excel-programming/)
-   -   hide sheet (https://www.excelbanter.com/excel-programming/300942-hide-sheet.html)

jeff

hide sheet
 
I have two sheets, X and Y within a workbook. I need help
with VBA code for the following scenario:

The active sheet is Y. When I click on Sheet X I want to
automatically hide sheet Y.

Bob Phillips[_6_]

hide sheet
 
Hi Jeff,

Private Sub Workbook_SheetDeactivate(ByVal Sh As Object)
If Sh.Name = "Y" Then
Sh.Visible = xlSheetHidden
End If
End Sub

'This is workbok event code, which means that it needs to be
'placed in the ThisWorkbook code module, not a standard
'code module. To do this, right-click on the Excel icon at the top
'left of the Excel spreadsheet, select the View Code option from
'the menu, and paste the code in.



--

HTH

Bob Phillips
... looking out across Poole Harbour to the Purbecks
(remove nothere from the email address if mailing direct)

"Jeff" wrote in message
...
I have two sheets, X and Y within a workbook. I need help
with VBA code for the following scenario:

The active sheet is Y. When I click on Sheet X I want to
automatically hide sheet Y.





All times are GMT +1. The time now is 12:02 PM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
ExcelBanter.com