View Single Post
  #2   Report Post  
Peo Sjoblom
 
Posts: n/a
Default Running a Macro from within another macro

Yes,

put the name of the macro within your macro

Sub MyMacro1()
MyMacro2
End Sub

Regards,

Peo Sjoblom

"grahammal" wrote
in message ...

Is there a way of calling a macro from within another macro?

Example

Sub Button1_Click()
For a = 1 To 10000
Range("A1") . Value = a
Next a
' Would now like to run the macro which is behind Sub
Button2_Click()
End Sub


--
grahammal
------------------------------------------------------------------------
grahammal's Profile:

http://www.excelforum.com/member.php...o&userid=20336
View this thread: http://www.excelforum.com/showthread...hreadid=478781