View Single Post
  #5   Report Post  
Posted to microsoft.public.excel.programming
Ronald R. Dodge, Jr.[_2_] Ronald R. Dodge, Jr.[_2_] is offline
external usenet poster
 
Posts: 134
Default Macro Running Another Macro

Actually, you don't even have to use the "Call" keyword as it's assumed in
VBA.

--
Thanks,

Ronald R. Dodge, Jr.
Production Statistician
Master MOUS 2000
"Susan" wrote in message
...
sub Mark()

call MarkFormatting
call MarkCopying
call MarkPrinting

End Sub

you can call as many as you want from the main macro, and they can be
contained in other modules.
hope that helps!
:)
susan


On Jan 22, 2:35 pm, Mark P wrote:
Is it possible to create a macro that just runs a few other macros? I have
12
separate macros with separate shortcuts and it'd be easier to have one
shortcut. Thanks!