Run The First Macro and then the second and third

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

Guest

Hello from Steved

Question is it possible in word the run the 1st macro and then run a second,
third
the example below will allow it in excel if so what would one have to do in
word.

Sub CallMacros()
Call test1
Call test2
Call test3
End Sub
Thankyou.
 
Sub CallMacros()
Application.Run MacroName:="Test1"
Application.Run MacroName:="Test2"
Application.Run MacroName:="Test3"
End Sub
 
Excellent Thankyou.

Graham Mayor said:
Sub CallMacros()
Application.Run MacroName:="Test1"
Application.Run MacroName:="Test2"
Application.Run MacroName:="Test3"
End Sub

--
<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
Graham Mayor - Word MVP

My web site www.gmayor.com
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top