Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
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 |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
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 "jamesa" wrote in message ... 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 |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
here u a
Sub Makro1() ' End Sub Sub Makro2() ' End Sub .... Sub RnuSequentially() Makro1 Makro2 End Sub Regards, Milos "jamesa" wrote in message ... 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 |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
macro to run macros | Excel Discussion (Misc queries) | |||
Run macros macro | Excel Discussion (Misc queries) | |||
Enable Macros with a Macro! | Excel Discussion (Misc queries) | |||
Macro Msg. when file has no macros | Excel Worksheet Functions | |||
macro warning - but no macros | Excel Discussion (Misc queries) |