Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
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. |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
How 'bout:
Sub mymacro Call autoread Call filterdata Call splitdata Call viewresults End Sub "Joe" wrote in message oups.com... 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. |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Thank you very much. That was really easy. :)
- Joe. |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Excel crashes while opening excel file imbeddied with macros | Excel Discussion (Misc queries) | |||
Displaying cell references next to embedded cells in Word 2000 | New Users to Excel | |||
Enabling macros | Excel Discussion (Misc queries) | |||
sorting with macros | Excel Discussion (Misc queries) | |||
Transferring toolbars and macros to other computers | Excel Discussion (Misc queries) |