If you develop a lot of macros, you may want to list all those macros along with the shortcut keys used to initiate them. Of course, coming up with the code to list the shortcut keys is the tricky part of this problem, as such an ability is not built into Excel directly. (You can do it in Word, but not in Excel. Go figure.)
The easiest way to do this would be to create a macro that exported each of your macros to a .bas text file, then read that text file to determine the shortcut keys. Why this is easiest is because the shortcut keys are not directly available to VBA, but they are written as part of the text file whenever you export macros.
For instance, when you export a macro to a .bas file, it will include lines similar to the following:
Attribute VB_Name = "Module1" Attribute MyMacro.VB_Description = "My Description" Attribute MyMacro.VB_ProcData.VB_Invoke_Func = "q\n14"
Your macro could read the .bas file (it is nothing but a text file) and parse what is written there to extract the macro's name and shortcut keys. In the above example, "Module1" is the module the code is in, "MyMacro" is the procedure name, "My Description" is the description for the procedure and "q" is the shortcut key. (The "\n14" seems to be there for all macros; what it signifies is unclear.)
Your code, to be effective, would need to loop through all the modules in a workbook, doing the export and parse steps to get the desired information.
Sound complex? It can be. It's a good thing that there is already a macro available that does all of this. Ivan Moala has written a free Excel add-in that does exactly what is described above. The add-in is available here:
http://www.xcelfiles.com/GetShortCutKeys.html
The code is password protected but Moala has indicated elsewhere on the Internet that the password to access the code is "test." By unlocking the code, you can see exactly how he achieved his results and then create your own macro, or you can just modify his to make sure that whatever is printed matches your needs. For instance, if you want the macro to print the workbook name, module name, macro name, and shortcut key, then you could modify the code to do exactly that.
There is one gottcha that could bite you when using macros of this sort, as well. You need to make sure that you have your macro security set to the proper level to allow the type of access required for the macro to do its work. You do this by choosing, within Excel, Tools | Options | Security | Macro Security. You can then set the security level to the necessary setting: Trust Access VB Projects.
The code described so far allows you to get the desired information for a specific workbook. The next step, of course, is to make sure that the code is applied to each open workbook. This is relatively easy. If your code to process the macros in a single workbook is named something like ListKeys, then you can create a different macro that looks like this:
Sub ListAllKeys()
Dim wkb As Workbook
For Each wkb In Workbooks()
Call ListKeys(wkb)
Next
End Sub
The macro steps through all the open workbooks, passing each one's name to the ListKeys macro. This name can then be used by your ListKeys procedure to determine where it grabs its information from.
ExcelTips is your source for cost-effective Microsoft Excel training. This tip (3162) applies to Microsoft Excel 97, 2000, 2002, and 2003.
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!
Need to rename a file in a macro? It's easy to do using the Name command, as discussed in this tip.
Discover MoreGot a workbook cluttered with all sorts of macros? Delete them and you'll make your workbook easier to manage.
Discover MoreIf you develop macros and edit them quite a bit, you may be running the risk of causing problems with the macros or with ...
Discover MoreFREE SERVICE: Get tips like this every week in ExcelTips, a free productivity newsletter. Enter your address and click "Subscribe."
2017-07-04 09:43:31
as of today the cached version of the website is not dead, here the download link:
http://web.archive.org/web/20040302213139/http://www.downloadcounter.com/cgi-bin/download.pl?username=ivanm&account=39
thx Prooffreader for the tip ;)
2014-05-09 03:08:47
noname
It appears "
14" refers to CRTL
2013-09-06 12:23:43
Prooffreader
There's a cached version of the web page available at: http://web.archive.org/web/20040302213139/http://www.xcelfiles.com/GetShortCutKeys.html
2013-08-13 07:33:54
Bryan
Unfortunately, as often happens on the internet when relying on someone else to host your content, the link is down.
Got a version of Excel that uses the menu interface (Excel 97, Excel 2000, Excel 2002, or Excel 2003)? This site is for you! If you use a later version of Excel, visit our ExcelTips site focusing on the ribbon interface.
FREE SERVICE: Get tips like this every week in ExcelTips, a free productivity newsletter. Enter your address and click "Subscribe."
Copyright © 2018 Sharon Parq Associates, Inc.
Comments