View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.misc
Norman Jones Norman Jones is offline
external usenet poster
 
Posts: 5,302
Default executing a macro within another

Hi Brian,

Try something like:

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

'Your code

Call Macro2

End Sub
'<<=============


---
Regards,
Norman


"brian" wrote in message
...
How can I call up macro1 to execute it inside macro2? Thanks for help.

Brian