Passing Multiple parameters to VBA macro from a form button

WanderingSoul

New Member
Joined
Oct 31, 2024
Messages
4
Office Version
  1. 2021
Platform
  1. Windows
I have a problem passing parameters to ‘macros’ in Excell. My version is from Microsoft Office Professional Plus 2021 (Microsoft® Excel® 2021 MSO (Version 2409 Build 16.0.18025.20160) 64-bit)

I want to use a simple Form button to call a VBA Sub which takes three parameters, from looking through the web it should work, but it doesn’t!
I can call a macro with no parameters or one parameter but if I try and pass more than one parameter I get the error message of “Cannot run the macro "'TwoParms(45, 75)'", The macro may not be available in this workbook or all macros may be disabled.”
TwoParms is my test macro.

To eliminate potential problems and keep things as simple as possible I have a created a new workbook with a single sheet (Sheet1) The VBA module was created using a simple record macro, then I added

Sub NoParms()
MsgBox ("No Parameters")
End Sub

Sub OneParm(parm1)
MsgBox ("OneParm: " & parm1)
End Sub

Sub TwoParms(parm1, parm2)
MsgBox ("TwoParms: " & parm1 & " | " & parm2)
End Sub

To the module, Debug/Compile produces no errors or warnings.
Calling NoParms() and OneParm(parm) work, calling TwoParms(parm1, parm2) does not.

I know I could pass a range of 3 cells, or perhaps use ActiveX controls, but I can see no reason why I should have to. As far as I can research this should work using a simple Form button.

Should this work and if so, what am I missing?
 

Excel Facts

Links? Where??
If Excel says you have links but you can't find them, go to Formulas, Name Manager. Look for old links to dead workbooks & delete.
What format is the workbook? (won't work in an xlsb file) How did you assign the macro specifically?
 
Upvote 0
xslm, macro assigned te same way for no parms one parm and 2 parms, right click button and assign macro, then type it in.

As I said the one parameter and no parameter macros work fine, I only get the error when trying to use more than one parameter.
 
Upvote 0
I have a problem passing parameters to ‘macros’ in Excell. My version is from Microsoft Office Professional Plus 2021 (Microsoft® Excel® 2021 MSO (Version 2409 Build 16.0.18025.20160) 64-bit)

I want to use a simple Form button to call a VBA Sub which takes three parameters, from looking through the web it should work, but it doesn’t!
I can call a macro with no parameters or one parameter but if I try and pass more than one parameter I get the error message of “Cannot run the macro "'TwoParms(45, 75)'", The macro may not be available in this workbook or all macros may be disabled.”
TwoParms is my test macro.

To eliminate potential problems and keep things as simple as possible I have a created a new workbook with a single sheet (Sheet1) The VBA module was created using a simple record macro, then I added

Sub NoParms()
MsgBox ("No Parameters")
End Sub

Sub OneParm(parm1)
MsgBox ("OneParm: " & parm1)
End Sub

Sub TwoParms(parm1, parm2)
MsgBox ("TwoParms: " & parm1 & " | " & parm2)
End Sub

To the module, Debug/Compile produces no errors or warnings.
Calling NoParms() and OneParm(parm) work, calling TwoParms(parm1, parm2) does not.

I know I could pass a range of 3 cells, or perhaps use ActiveX controls, but I can see no reason why I should have to. As far as I can research this should work using a simple Form button.

Should this work and if so, what am I missing?
Have you created a Form Control or ActiveX Control?
xslm, macro assigned te same way for no parms one parm and 2 parms, right click button and assign macro, then type it in.

As I said the one parameter and no parameter macros work fine, I only get the error when trying to use more than one parameter.
What are you typing in and where?
 
Upvote 0
Using as I said a Form Button.

'OneParm(45)' works, 'TwoParms(45,75)' does not.
1730380480623.png
 
Upvote 0
Thank you Dave, that works.

Weird that 'OneParm(45)' works both with brackets and without. but Two parameters only works without brackets!
I tried it on a three parameter macro and using string parameters which all work fine without brackets.
If passing an Evaluate("B4") then the evaluate function must have the brackets, it doesn't work without them!
 
Upvote 0
I have passed arguments from objects in many projects but even now, get myself in a muddle with the correct syntax

You may find this article helpful Using procedures with arguments

Glad we were able to assist & appreciate your feedback

Dave
 
Upvote 0

Forum statistics

Threads
1,223,842
Messages
6,174,981
Members
452,596
Latest member
Anabaric

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