View Single Post
  #3   Report Post  
Posted to microsoft.public.excel.programming
Don Guillett Don Guillett is offline
external usenet poster
 
Posts: 10,124
Default newbie q: how to run one sub after another

sub runmacros()
call sub1
call sub2
'etc
end sub

--
Don Guillett
SalesAid Software

"steven" wrote in message
...
this might be a stupid q to ask but...

I have created 6 macros that I run one after another to perform my task.
Istead of running them one after another I'd like a sub that calls one by
one
(in the right order), insted of doing it myself. What would the code be?

I know i can paste the code of each one into the first to make one sub,
but
I need the subs like this to individually use them in other tasks.

Thank you,

Steven.