executing a macro within another

  • Thread starter Thread starter brian
  • Start date Start date
Hi Brian,

Try something like:

'=============>>
Public Sub Tester()

'Your code

Call Macro2

End Sub
'<<=============
 
Sub macro2()

Call macro1

End Sub

If macro1 has arguments,

Call macro1(Param1, param2)

--

HTH

Bob Phillips

(replace xxxx in the email address with gmail if mailing direct)
 
Back
Top