Linking subs into one macro

T

Trevor Shuttleworth

Julie

Sub Macro1()
Macro2
Macro3
End Sub

Sub Macro2()
: code for Macro 2
End Sub

Sub Macro3()
: code for Macro 3
End Sub

Regards

Trevor
 
B

Bill Kuunders

add a line at the bottom of your first sub with just the name -no brackets-
of your second sub

Sub firstone()
does it's thing...
secondone
End Sub
Regards
Bill K
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top