View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.programming
Jim Thomlinson Jim Thomlinson is offline
external usenet poster
 
Posts: 5,939
Default Run two macros in the same time.

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.