Two macros at startup excel?

  • Thread starter Thread starter ale
  • Start date Start date
A

ale

Hello, I have tried to do all you say in the Autorun Macro at Startup.
I have put my code in thisWorkbook Workbook_Open event.
But the problem is that my woorkbook is already running a macro. It
contains externally data that must be updated from Share Point.

How can I run two macros at startup?
Thanks
Ale
 
hi
run one macro then have the first macro call the second macro.
I once had a file that had to run 13 macros at open. the first macro was set
up to call the other macros in sequential order.
you can't run 2 macros at once so sequential order is your only option.

Regards
FSt1
 
after thought....
only the first macro should be in the workbook_open event.
the second macro (the one that is called) should be in a standard module

regards
FSt1
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top