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
HansVogelaar
Jun 22, 2023MVP
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.