Excel VBA Course
Excel VBA Course - From Beginner to Expert

200+ Video Lessons
50+ Hours of Video
200+ Excel Guides

Become a master of VBA and Macros in Excel and learn how to automate all of your tasks in Excel with this online course. (No VBA experience required.)

View Course

Multiple Macros Question

0

Can multiple macros run simultaneously or do macros run separately on the same data set?

Answer
Discuss

Answers

0
Selected Answer

You can create a macro that Calls multiple macros.  You can link it to a button (see below)

Sub Button_Click

    call macroName1

    call macroName2

    call macroName3

End Sub

Discuss


Answer the Question

You must create an account to use the forum. Create an Account or Login