hide sheet

  • Thread starter Thread starter Jeff
  • Start date Start date
J

Jeff

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.
 
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)
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top