Macro help needed!

REanalyst84

New Member
Joined
Mar 4, 2011
Messages
4
I am trying to control multiple macros across multiple worksheets in ONE workbook... however, I can not determine what code needs to be added to create a "Master" macro. Each sheet has one macro on it... any help is greatly appreciated
 

Excel Facts

Format cells as currency
Select range and press Ctrl+Shift+4 to format cells as currency. (Shift 4 is the $ sign).
I am trying to control multiple macros across multiple worksheets in ONE workbook... however, I can not determine what code needs to be added to create a "Master" macro. Each sheet has one macro on it... any help is greatly appreciated
It is bit difficult to work with CSC type files. you can make a copy of it try your best
 
Upvote 0
If you wanted to run all macro's then you need a starter macro

for instance

Sub CallMany ()

call macro1(or the name of the macro you want)
call macro2
call macro3

etc

End Sub
 
Upvote 0
Thanks for your response, will this allow me to control individual macros across many sheets in one workbook? I tried before by using the "Call" feature, yet it didn't seem able to run through multiple worksheets?
 
Upvote 0
For example,

Workbook contains about 20 worksheets... within this, 9 worksheets contain one macro each. Instead of clicking each individual page then running each macro, I want to be able to click on my main summary worksheet, click ONE button to run a master macro that will run each of the 9 macros. The "call" features seems to work if all of the macros are on one page but as soon as I want it to move to the next page, I receive an "out of range" error.
 
Upvote 0

Forum statistics

Threads
1,224,522
Messages
6,179,297
Members
452,903
Latest member
Knuddeluff

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top