How can I run All Macros At once?

Hello.

I use Microsoft Word 2007 and write 10 Macros. they showed as Macro1...10.How can I run all Macros at once?

Thank you.

July 28th, 2015 9:10am

One way would be to create another macro that calls each of the others in whatever order you want them to run. Another way would be to move all their code into a single macro. Either way, you should learn to use the VBA editing environment, which you can access via Alt-F11.
Free Windows Admin Tool Kit Click here and download it now
July 28th, 2015 9:36am

One way would be to create another macro that calls each of the others in whatever order you want them to run. Another way would be to move all their code into a single macro. Either way, you should learn to use the VBA editing environment, which you can access vi
August 7th, 2015 1:21am

Do you mean as in:

Sub RunAll()
  Call Macro1
  Call Macro2
  Call Macro3
  Call Macro4
  Call Macro5
  Call Macro6
  Call Macro7
  Call Macro8
  Call Macro9
  Call Macro10
End Sub

And you need help with that???

That's the most anyone can offer without seeing your existing code.

Free Windows Admin Tool Kit Click here and download it now
August 7th, 2015 1:34am

Do you mean as in:

Sub RunAll()
  Call Macro1
  Call Macro2
  Call Macro3
  Call Macro4
  Call Macro5
  Call Macro6
  Call Macro7
  Call Macro8
  Call Macro9
  Call Macro10
End Sub

And you need help with that???

That's the most anyone can offer without seeing your existing

August 7th, 2015 9:12am

Given that you're posting in a Word IT Pro forum, why would you suppose otherwise? Have you at least tried the code?
Free Windows Admin Tool Kit Click here and download it now
August 7th, 2015 9:27am

Since you've never posted any of your code here, how do you expect anyone to be able to say what the issue is? For all I know your 'Macro5' is called in the wrong order - perhaps it should be called after Macro6 or after Macro7 or after Macro8 or after Macro9 or after Macro10 ...
September 12th, 2015 7:54am

Here is a resource that may help:

Getting to grips with VBA basics in 15 minutes

Free Windows Admin Tool Kit Click here and download it now
September 12th, 2015 10:47pm

Since you've never posted any of your code here, how do you expect anyone to be able to say what the issue is? For all I know your 'Macro5' is called in the wrong order - perhaps it should be called after Macro6 or after Macro7 or after Macro8 or after Macro9 or after M
September 14th, 2015 2:56am

What do you think?

Unless you post the code you're using, together with a detailed description of what you're trying to do and how each macro relates to the others, how do you expect anyone else to know?

Free Windows Admin Tool Kit Click here and download it now
September 14th, 2015 5:29am

This topic is archived. No further replies will be accepted.

Other recent topics Other recent topics