Quick Access Tool bar

Roderick_E

Well-known Member
Joined
Oct 13, 2007
Messages
2,051
I'm trying to add to my quick access tool bar but it only seems to see macros WITHOUT arguments.
 

Excel Facts

Why are there 1,048,576 rows in Excel?
The Excel team increased the size of the grid in 2007. There are 2^20 rows and 2^14 columns for a total of 17 billion cells.
How would you pass arguments to a macro if you ran it from the QAT?
 
Upvote 0
How would you pass arguments to a macro if you ran it from the QAT?

Good question. I want the user to actually call another macro which does utilize arguments. I tried application.run workbookname!macroname but I do not know how to add arguments to that either.
 
Upvote 0
Thanks Fluff for the handhold,
I got it to do what I wanted with this code:
Code:
Dim xlst As Workbook
Set xlst = Workbooks("XLSuperTool2.xlam")
Application.Run "'" & xlst.Name & "'!xluihandler", "bulletpointer"
 
Upvote 0

Forum statistics

Threads
1,224,823
Messages
6,181,175
Members
453,021
Latest member
Justyna P

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