Combining Macro Modules

Ithelgond

New Member
Joined
Apr 26, 2002
Messages
1
I want to combine two Macros...
I have two short modules that I want to run when a button is pressed. Right now, The button is associated with the Print Macro. Here's the code I want the button to perform:

Sub PrintCheck()
'
' PrintCheck Macro
' Yep!... It prints the check.
'

'
ActiveWindow.SelectedSheets.PrintOut Copies:=1, Collate:=True
End Sub

Sub Count()
mycount = Range("a1") + 1
Range("a1") = mycount
End Sub

Any help would be welcome...

-Gern
 

Excel Facts

Repeat Last Command
Pressing F4 adds dollar signs when editing a formula. When not editing, F4 repeats last command.
I just combined 9 short macros into one large one. Mine may not be the best way, but it works.

First go to Macros, then Macros again. Find the macro you wish to add and click edit. The edit screen will appear. Highlight the macro between sub and sub end and right click.

The look at the drop down box above the macro, select the macro you wish to copy to. Past it where you want it between sub and sub end. It's less confusing if you select the left button on the lower left hand corner of the edit window.

Hope this helps (and works).
 
Upvote 0

Forum statistics

Threads
1,214,622
Messages
6,120,572
Members
448,972
Latest member
Shantanu2024

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