![]() |
Making macro
To make a macro that if I selected sheet2 , sheet1 hide
|
Making macro
Private Sub Worksheet_Activate()
Worksheets("Sheet1").Visible = xlSheetHidden End Sub 'This is worksheet event code, which means that it needs to be 'placed in the Sheet2 worksheet code module, not a standard 'code module. To do this, right-click on the sheet tab, select 'the View Code option from the menu, and paste the code in. -- HTH Bob (there's no email, no snail mail, but somewhere should be gmail in my addy) "George A. Jululian" <George A. wrote in message ... To make a macro that if I selected sheet2 , sheet1 hide |
Making macro
Right click on the tabl for sheet 2 and select View Code. Paste the following
code... Private Sub Worksheet_Activate() Sheets("Sheet1").Visible = xlSheetHidden End Sub -- HTH... Jim Thomlinson "George A. Jululian" wrote: To make a macro that if I selected sheet2 , sheet1 hide |
Making macro
Thank you very much for your help
I want the macro run as soon as I select sheet2 sheet1 to be hide regards "Bob Phillips" wrote: Private Sub Worksheet_Activate() Worksheets("Sheet1").Visible = xlSheetHidden End Sub 'This is worksheet event code, which means that it needs to be 'placed in the Sheet2 worksheet code module, not a standard 'code module. To do this, right-click on the sheet tab, select 'the View Code option from the menu, and paste the code in. -- HTH Bob (there's no email, no snail mail, but somewhere should be gmail in my addy) "George A. Jululian" <George A. wrote in message ... To make a macro that if I selected sheet2 , sheet1 hide |
Making macro
Thank you very much for your help
I want the macro run as soon as I select sheet2 sheet1 to be hide regards "Jim Thomlinson" wrote: Right click on the tabl for sheet 2 and select View Code. Paste the following code... Private Sub Worksheet_Activate() Sheets("Sheet1").Visible = xlSheetHidden End Sub -- HTH... Jim Thomlinson "George A. Jululian" wrote: To make a macro that if I selected sheet2 , sheet1 hide |
Making macro
please ignore my previous massage your massage was very clear and very
helpful thanks again "Bob Phillips" wrote: Private Sub Worksheet_Activate() Worksheets("Sheet1").Visible = xlSheetHidden End Sub 'This is worksheet event code, which means that it needs to be 'placed in the Sheet2 worksheet code module, not a standard 'code module. To do this, right-click on the sheet tab, select 'the View Code option from the menu, and paste the code in. -- HTH Bob (there's no email, no snail mail, but somewhere should be gmail in my addy) "George A. Jululian" <George A. wrote in message ... To make a macro that if I selected sheet2 , sheet1 hide |
Making macro
please ignore my previous massage your massage was very clear and very
helpful thanks again "Jim Thomlinson" wrote: Right click on the tabl for sheet 2 and select View Code. Paste the following code... Private Sub Worksheet_Activate() Sheets("Sheet1").Visible = xlSheetHidden End Sub -- HTH... Jim Thomlinson "George A. Jululian" wrote: To make a macro that if I selected sheet2 , sheet1 hide |
Making macro
That is what Bob's event code does.
When sheet2 is activated, sheet1 hides. Did you paste the code into the sheet2 module as Bob instructed? Gord Dibben MS Excel MVP On Sat, 21 Jul 2007 07:30:02 -0700, George A. Jululian wrote: Thank you very much for your help I want the macro run as soon as I select sheet2 sheet1 to be hide regards "Bob Phillips" wrote: Private Sub Worksheet_Activate() Worksheets("Sheet1").Visible = xlSheetHidden End Sub 'This is worksheet event code, which means that it needs to be 'placed in the Sheet2 worksheet code module, not a standard 'code module. To do this, right-click on the sheet tab, select 'the View Code option from the menu, and paste the code in. -- HTH Bob (there's no email, no snail mail, but somewhere should be gmail in my addy) "George A. Jululian" <George A. wrote in message ... To make a macro that if I selected sheet2 , sheet1 hide |
All times are GMT +1. The time now is 11:34 PM. |
Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
ExcelBanter.com