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

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
 
R

Roger Govier

Hi

Create another Macro that calls each other macro in turn.

Sub RunAll()

Call Macro1
Call Macro2
..
..
..
Call MacroX
End Sub
 
S

samergadelrab

Thanks a lot, i was just asking about the run macro command in VBA.
Thanks again, really appreciate :)
 
Top