run a macro in another macro

  • Thread starter Thread starter Ruud
  • Start date Start date
Ruud,

Simply call it by name. Here is an example:

Sub OuterMacro()
InnerMacro
End Sub

Sub InnerMacro()
MsgBox "Hello, world!"
End Sub

HTH,
Ryan
 

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