View Single Post
  #3   Report Post  
Posted to microsoft.public.excel.programming
Ruud[_2_] Ruud[_2_] is offline
external usenet poster
 
Posts: 7
Default run a macro in another macro

Thanks Ryan

"Ryan Poth" wrote in message
...
Ruud,

Simply call it by name. Here is an example:

Sub OuterMacro()
InnerMacro
End Sub

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

HTH,
Ryan