bottom
Great ExcelTips!
         
Your e-mail address is safe!
Close Note

Tips.Net > ExcelTips Home > Macros > Managing Macros > One Shortcut for Two Macros

One Shortcut for Two Macros

Summary: Macros and the shortcuts used to invoke those macros are stored on a workbook-by-workbook basis. If you load two workbooks, each of which uses the same shortcut to run a macro, the results may seem unpredictable. This tip explains how Excel deals with the conflicting shortcuts and how you can work around the apparent conflict. (This tip works with Microsoft Excel 97, Excel 2000, Excel 2002, and Excel 2003.)

William has two workbooks, each containing macros. Even though the macros are different, they are invoked by using the same keyboard shortcut. When only one of the workbooks is open, the shortcut works great. When both workbooks are open at the same time, William never knows exactly what will run. He wonders if there is a way for Excel to treat the shortcuts independently so that if both workbooks are open the keyboard shortcuts will work harmoniously.

The short answer is that there is no way to make this happen without making some changes to the macros themselves. Shortcut keys are "global" to the instance of the application that is running (in this case, Excel). As workbooks are opened, their shortcuts are added to an internal table that functions as an index of all the shortcuts and the macro they are designated to run.

This index seems to be sorted alphabetically, by workbook name. When you use a shortcut key, Excel looks at the index and picks the first matching shortcut in the index. Also if you have a shortcut that uses one of the built-in shortcuts, the created macro will always run before the built-in one. If the macros have the same name, the first one opened is run.

Since the index table maintained by Excel is created by application instance, you could get around the conflict by making sure that you open each workbook in its own instance of Excel. Don't use File | Open to load the second workbook; instead double-click the workbook's icon in Windows.

If you tire of remembering to open the workbooks in this manner, the only other option is to start making changes to macros. The easy change would be to modify the shortcut keys so they are not the same. You could maintain the same shortcut keys by adding some code to the beginning of each macro. Have each macro check the name of the active workbook. If the name matches the expected name for that macro, then the code can continue to execute. If it does not match, then the code can activate the other workbook and directly run the macro in that one.

Tip #2872 applies to Microsoft Excel versions: 97 | 2000 | 2002 | 2003


More Power! Expand your skills and make Excel really sing! It's all possible with macros. The best resource anywhere for macros is ExcelTips: The Macros. Check it out today!

Helpful Links

Ask an Excel Question
Make a Comment

Tips.Net Home
Vital News Home

ExcelTips FAQ
ExcelTips Premium

Learn Access Now

Beauty Tips
Car Tips
Cleaning Tips
College Tips
Cooking Tips
Excel2007 Tips
ExcelTips
Family Tips
Gardening Tips
Health Tips
Home Tips
Money Tips
Pet Tips
Word2007 Tips
WordTips

Advertise on the
ExcelTips Site

 

Great Info!

Get tips like this every week in ExcelTips, a free productivity newsletter. Enter your e-mail address and click "Subscribe."
     
(Your e-mail address will never be shared with anyone, ever.)