View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
Ryan Poth Ryan Poth is offline
external usenet poster
 
Posts: 10
Default run a macro in another macro

Ruud,

Simply call it by name. Here is an example:

Sub OuterMacro()
InnerMacro
End Sub

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

HTH,
Ryan


"Ruud" wrote:

What is the command in a macro, to run another macro?
Thanks
Ruud