how to run multiple macro's at once

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hello,

I have 350 separate macro's, how do I get them to run in successive order,
other then having to click on each individually? Is there a way to 'link'
them all together?

Thanks,
Roxane
 
You can write a macro that in turn calls the other macros. E.g.,

Sub RunThemAll()
Macro1
Macro2
'...
End Sub


--
Cordially,
Chip Pearson
Microsoft MVP - Excel
Pearson Software Consulting, LLC
www.cpearson.com
 
Back
Top