View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
[email protected] aidan.heritage@virgin.net is offline
external usenet poster
 
Posts: 244
Default Invoking a macro from within another

Sub RunMacro
MyTest
MyOutput
end sub

sub MyTest
msgbox "this is my test"
end sub

sub MyOutput
msgbox "this is my output"
end sub


in other words, just put the name of the sub and it will run.