View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.programming
Mike H[_4_] Mike H[_4_] is offline
external usenet poster
 
Posts: 19
Default Macro Running Another Macro

Hi,

Put all your macro names in a seperate sub and call them sequentially

Sub RunEmAll()
Mymacro1
Mymacro2
Mymacro3
Mymacro4
'etc
End Sub

Mike


On Thu, 22 Jan 2009 11:35:01 -0800, 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!