View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
Jim Cone Jim Cone is offline
external usenet poster
 
Posts: 3,290
Default Run two macros in the same time.

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.