View Single Post
  #3   Report Post  
Posted to microsoft.public.excel.programming
RichardSchollar[_5_] RichardSchollar[_5_] is offline
external usenet poster
 
Posts: 1
Default Invoking a macro from within another


Hi

It is literally as simple as:

Sub MyMacro()
MyOtherMacro
End Sub

Sub MyOtherMacro()
Msgbox "Hello, World!"
End Sub

You don't need to use the Call statement.

Hope this helps!

Richard


--
RichardSchollar
------------------------------------------------------------------------
RichardSchollar's Profile: http://www.excelforum.com/member.php...o&userid=34698
View this thread: http://www.excelforum.com/showthread...hreadid=546683