Excel 2007 macros - how to merge 5 macros together into one

O

Otto Moehrbach

You will find it easier to read, troubleshoot, and change the macros if you
leave them as separate macros. But the choice is yours. You can merge all
the macros by simply pasting all the code together but you have to be sure
that the code still makes sense.
Or you can leave them as separate macros and run them from one macro, like
this:
Sub MainMacro
Call ThisMacro
Call ThatMacro
Call TheOtherMacro
End Sub
HTH Otto
 
Top