Is it possible to run more than one macro using one command button?if yes, how??

  • Thread starter Thread starter samergadelrab
  • Start date Start date
S

samergadelrab

Hello,
I had many macros that i want to run them all at once but not upon the
opening of the excel workbook. i want to have one command button that
runs them all. is it feasible??
Samer Gamal
 
Hi

Create another Macro that calls each other macro in turn.

Sub RunAll()

Call Macro1
Call Macro2
..
..
..
Call MacroX
End Sub
 
Thanks a lot, i was just asking about the run macro command in VBA.
Thanks again, really appreciate :)
 

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

Back
Top