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 1:08pm

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 1:35pm

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 5:19am

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 5:32am

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 1:10pm

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 1:25pm

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:53am

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:46pm

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

Other recent topics Other recent topics