Please Note: This article is written for users of the following Microsoft Excel versions: 2007, 2010, 2013, 2016, 2019, and Excel in Microsoft 365. If you are using an earlier version (Excel 2003 or earlier), this tip may not work for you. For a version of this tip written specifically for earlier versions of Excel, click here: Hiding Macros.
Written by Allen Wyatt (last updated October 1, 2024)
This tip applies to Excel 2007, 2010, 2013, 2016, 2019, and Excel in Microsoft 365
Most readers already know that you can create functions and subroutines using VBA. This is no different than it is under VBA's namesake, Visual Basic. Normally, a macro shows up in the macro list when you display the Macros dialog box (press Alt+F8), unless one of three conditions is met:
The only type of macro listed in the Macros dialog box is a non-private subroutine with no parameters. In certain situations, however, you may not want those listed either. For instance, you may have created some universal subroutines that don't do anything useful if called on their own; they are designed to be called from other code. For instance, consider the following macro:
Sub MySub() MsgBox "We are running the macro" End Sub
This macro will appear in the Macros dialog box. If you don't want it to appear, there are several solutions you can pursue, all of which become obvious from examining the three ways in which macros are excluded from the macro list. The first potential solution is to examine your code and find out if it is really "universal." Do you need the code from more than a single module? If you don't, then declare the subroutine Private; it will not appear in the Macros dialog box. Thus, the previous problem macro becomes the following:
Private Sub MySub() MsgBox "We are running the macro" End Sub
The second way to hide the macro is to simply convert it to a function. This may sound odd, particularly if you don't want to return any values, but it is perfectly permissible. In VBA a function does not have to return a value. In the absence of explicitly declaring a return value, the function will return a default result (for example, Boolean returns False, String returns "", etc.) Thus, the problem procedure could be changed to a function and declared as shown here:
Function MySub() As Boolean MsgBox "We are running the macro" End Function
This procedure doesn't show in the Macros dialog box and does not require arguments. It returns False by default, but this result can be ignored. Depending on the nature of the subroutine you are changing, it may be to your benefit to really allow the converted function to return True or False depending on the success of what is being done in the code. In this case, the converted function is a real function, and not really a dummy subroutine, since it is returning something of value.
The third potential solution is to use some dummy parameters with the subroutine. You don't need to do anything with them within the subroutine itself, but by including them the procedure is not listed in the macro list. In this scenario, the problem subroutine is changed to something like the following:
Sub MySub(Void As Integer) MsgBox "We are running the macro" End Sub
Now the procedure is not listed in the macro list, but you need to change the way in which the subroutine is called. You must modify every instance so that a parameter is passed, even though it is never used.
Note:
ExcelTips is your source for cost-effective Microsoft Excel training. This tip (9904) applies to Microsoft Excel 2007, 2010, 2013, 2016, 2019, and Excel in Microsoft 365. You can find a version of this tip for the older menu interface of Excel here: Hiding Macros.
Save Time and Supercharge Excel! Automate virtually any routine task and save yourself hours, days, maybe even weeks. Then, learn how to make Excel do things you thought were simply impossible! Mastering advanced Excel macros has never been easier. Check out Excel 2010 VBA and Macros today!
Workbooks can contain macros, or not. It is entirely up to you whether they do or not, but at some future time you might ...
Discover MoreWhen you change from one worksheet to another, you may want to have Excel automatically run a macro for the worksheet you ...
Discover MoreMacros allow you to perform all sorts of file-related operations. One such operation allows you to delete a directory. ...
Discover MoreFREE SERVICE: Get tips like this every week in ExcelTips, a free productivity newsletter. Enter your address and click "Subscribe."
2024-10-01 06:12:50
SteveJez
Nice tip especially for shared workbooks. I sometimes customise the QAT - for specific workbook - with macros, if you use the Optional parameter then you can't select the macro in the QAT customisation pane - because it doesn't show up !. Solution - leave out the Optional parameter, customise the QAT, then go back into the VBA editor, insert the Optional parameter. All good - the QAT button works as it should & macro does not show up in Macro Dialog Box.
2020-12-02 10:13:43
Rick
I use (Optional Dummy as Boolean) in all of mine
2020-11-29 17:32:43
Peter
Thanks, this will help me declutter my macro list.
2020-11-28 10:26:00
J. Woolley
The "third potential solution" mentioned in the Tip should be modified as follows:
Sub MySub(Optional Void As Integer)
MsgBox "We are running the macro"
End Sub
Now it is NOT necessary to include a parameter when calling MySub.
Got a version of Excel that uses the ribbon interface (Excel 2007 or later)? This site is for you! If you use an earlier version of Excel, visit our ExcelTips site focusing on the menu interface.
FREE SERVICE: Get tips like this every week in ExcelTips, a free productivity newsletter. Enter your address and click "Subscribe."
Copyright © 2024 Sharon Parq Associates, Inc.
Comments