Macro to run macros

J

jamesa

I have six macros in a ws which I wish to run sequentially
on one click. Can someone help with macro or vb to do that.

Regards,
JA
 
C

Cole

if in the same module

Sub Control()
Call macro1
Call macro2
Call macro3
Call macro4
Call macro5
Call macro6
End Sub

if in different module
call module1.marco1
 
M

M.

here u a

Sub Makro1()
'
End Sub

Sub Makro2()
'
End Sub
....
Sub RnuSequentially()
Makro1
Makro2
End Sub

Regards,
Milos
 

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