Excel 2003 - How to set up autostart macro?

  • Thread starter Thread starter flumpf
  • Start date Start date
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.
 
Back
Top