Forum Discussion

rmpete6's avatar
rmpete6
Copper Contributor
Jun 22, 2023

how to combine two macros into one macro in excel

how to combine two macros into one macro in excel

1 Reply

  • rmpete6 

    Let's say you have Macro1 and Macro2.

    You can create a new macro:

    Sub Macro3
        Call Macro1
        Call Macro2
    End Sub

    This macro will run Macro1 first, then Macro2.

Resources