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.
Technology Tips and News
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.
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
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.
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 SubAnd you need help with that???
That's the most anyone can offer without seeing your existing
Here is a resource that may help:
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
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?