View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.programming
William[_2_] William[_2_] is offline
external usenet poster
 
Posts: 227
Default Run Macros Sequentially

Assuming the macros you want to run are named "Macro1", "Macro2",......
"Macro7"

Sub RunAllMacros()
Macro1
Macro2
Macro3
Macro4
Macro5
Macro6
Macro7
End Sub

--
XL2002
Regards

William



"Hargrove" wrote in message
...
| Forgive me, I know I've seen this answered before but I can't seem to find
it now that I need it.
|
| I have 7 macros set up in a single module. I'd like to tell it to run all
7, one after the other. How do I do it?