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)
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads


Back
Top