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 :)
 
Back
Top