Excel 2003 - How to set up autostart macro?

J

J.E. McGimpsey

Put this in the ThisWorkbook code module of personal.xls:

Private Sub Workbook_Open()
MyMacro
End Sub

where MyMacro is the name of your macro which is stored in a regular
code module in personal.xls.
 
Top