macros embedded

J

Joe

Hi,

I have (in the same workbook), four macros:

Sub autoread ( )
Sub filterdata ( )
Sub splitdata ( )
Sub viewresults ( )

what I would like to have is one single macro, lets say,

sub mymacro ( )

and when I run this new macro, it should "call" the other four macros
and run them.

Conceptually,

Sub mymacro ( )
--------------
------------
(run) Sub autoread ( )
-----------
(run) Sub filterdata ( )
----------
(run) Sub splitdata ( )
----------
(run) Sub viewresults ( )
------------
End Sub


Is this possible, and if yes, could anyone please help me with this ?

Thanks,

- Joe.
 
J

JMay

How 'bout:

Sub mymacro
Call autoread
Call filterdata
Call splitdata
Call viewresults
End Sub
 

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

Similar Threads


Top