View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
Stef C Stef C is offline
external usenet poster
 
Posts: 8
Default Automatic Macros

Use the Workbook_Open event of your workbook.

ex:
In your workbook VBA module

Private Sub Workbook_Open()

msgbox "Workbook Open!!!!!"

end sub



-----Original Message-----
Hey! I need some help form the pros, I need to create a
macro that runs automatically when the workbook in excel
opens, How do I do that? Thanks
.