View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.misc
FSt1 FSt1 is offline
external usenet poster
 
Posts: 3,942
Default CHANGE MARCO PROBLEM

hi
the command to run another macro is the call command.
sub macro1()
your code
Call Macro2
Call macro3
end sub

regards
FSt1


"Wu" wrote:

i have some marco, for example,
marco1, marco2, marco3.....................

I would like to run marco1 and go to marco2 when marco is finished.
what should I write in marco1?