Thread: macros embedded
View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.misc
Joe
 
Posts: n/a
Default macros embedded

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.