Thread: Making macro
View Single Post
  #8   Report Post  
Posted to microsoft.public.excel.misc
Gord Dibben Gord Dibben is offline
external usenet poster
 
Posts: 22,906
Default 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