Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Can I run two macros in the same time?
Thank for the help Emil. |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Emil,
No you cannot. However, you can "call" a macro from a macro... Sub MacroToStart 'code to run first 'call the other sub... MacroDoSomething 'more code that will run after the MacroDoSomething sub is complete. End Sub Sub MacroDoSomething 'lots of code to do something else End Sub -- Jim Cone San Francisco, USA http://www.realezsites.com/bus/primitivesoftware "emil" wrote in message Can I run two macros in the same time? Thank for the help Emil. |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Thanks, but is not in a same time.
Emil "Jim Cone" a scris: Emil, No you cannot. However, you can "call" a macro from a macro... Sub MacroToStart 'code to run first 'call the other sub... MacroDoSomething 'more code that will run after the MacroDoSomething sub is complete. End Sub Sub MacroDoSomething 'lots of code to do something else End Sub -- Jim Cone San Francisco, USA http://www.realezsites.com/bus/primitivesoftware "emil" wrote in message Can I run two macros in the same time? Thank for the help Emil. |
#4
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
You can not make 2 macros run at the same time. Post your code and perhaps we
can speed up the macros so that you will have no need to run two porcesses concurrently. -- HTH... Jim Thomlinson "emil" wrote: Thanks, but is not in a same time. Emil "Jim Cone" a scris: Emil, No you cannot. However, you can "call" a macro from a macro... Sub MacroToStart 'code to run first 'call the other sub... MacroDoSomething 'more code that will run after the MacroDoSomething sub is complete. End Sub Sub MacroDoSomething 'lots of code to do something else End Sub -- Jim Cone San Francisco, USA http://www.realezsites.com/bus/primitivesoftware "emil" wrote in message Can I run two macros in the same time? Thank for the help Emil. |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
running macros at specified time | Excel Discussion (Misc queries) | |||
First time deleting macros | Excel Discussion (Misc queries) | |||
Time Delay for Macros | Excel Discussion (Misc queries) | |||
running macros at a set time | Excel Discussion (Misc queries) | |||
Two Macros at the same time?? is it possible | Excel Programming |