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.