CHANGE MARCO PROBLEM

W

Wu

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?
 
F

FSt1

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

regards
FSt1
 
Top