Use the scheduler to open Excel with a particular workbook. Add a workbook_open event handler to your workbook, which calls the macro you want to run. This will happen automatically when the workbook is loaded.
If you need help with any of these steps, just ask. Rob
Try this, I use it to force a splash screen when excel opens up.
in the 'This Workbook' object module (with the worksheets) place a procedure like this
Private Sub WORKBOOK_OPEN()
' your code here
End Sub
You can name yours what ever you want to but the _Open() has to be the same, as Excel will look into the This WorkBook object module to see if there is any code with the _Open() if so it will launch it first.
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.