View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.misc
Dave Peterson Dave Peterson is offline
external usenet poster
 
Posts: 35,218
Default macro to run macros

Sub RunAll()
Call Sub1
Call Sub2
Call Sub3
...
End Sub
Sub Sub1()
...
End sub
....

wamstrdad wrote:

I would like to develop a macro to run multiple macros. for example, I have 5
macros (VBA) for a workbook. How do I write a macro that runs all of the
macros? I cannot combine them into 1 macro because they exceed the memory
limit.


--

Dave Peterson