View Single Post
  #6   Report Post  
Posted to microsoft.public.excel.programming
Tom Ogilvy Tom Ogilvy is offline
external usenet poster
 
Posts: 27,285
Default On activate event

You have received several answers, but
For more information on events

http://www.cpearson.com/excel/events.htm

--
Regards,
Tom Ogilvy


"SHIPP" wrote in message
...
I want to run a procedure when a user clicks on a worksheet. The code

should
be something like

Private Sub workbook_SheetActivate(ByVal Sh As Object)
MsgBox Sh.Name
End Sub

I've tried putting this in a module and underneath the sheets to no avail.
Where should I put this code if I want it to run when a worksheet is

clicked
and active?
--
M. Shipp