Forum Discussion
rmpete6
Jun 22, 2023Copper Contributor
how to combine two macros into one macro in excel
how to combine two macros into one macro in excel
1 Reply
Let's say you have Macro1 and Macro2.
You can create a new macro:
Sub Macro3 Call Macro1 Call Macro2 End SubThis macro will run Macro1 first, then Macro2.