Excel.Tips.Net Welcome toExcel.Tips.Net

Helpful Links

Tips.Net Home
ExcelTips Home
Ask an Excel Question
Make a Comment

Tips.Net Store

ExcelTips FAQ
ExcelTips Premium

Learn Access Now
Free Printable Forms

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

Advertise on the
ExcelTips Site

Newest Tips

Recording a Macro

Adding a Little Animation to Your Life

Converting a Range of URLs to Hyperlinks

Making the Formula Bar Persistent

Engineering Calculations

Digital Signatures for Macros

Fixing the Decimal Point

 

One Shortcut for Two Macros

Summary: Excel allows you to assign shortcut keys to macros. Given two different workbooks each containing different macros, it is possible that a macro from each workbook could use the same shortcut. Here's how that apparent conflict plays out in Excel. (This tip works with Microsoft Excel 97, Excel 2000, Excel 2002, Excel 2003, and Excel 2007.)

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 the Open dialog box 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.

ExcelTips is your source for cost-effective Microsoft Excel training. This tip (2872) applies to Microsoft Excel versions: 97 | 2000 | 2002 | 2003 | 2007

Tame Your Data! ExcelTips: Filters and Filtering provides all the details necessary to let you manage large sets of data with confidence and ease. Its information-packed pages demonstrate how to use the two types of filters provided by Excel: AutoFilters and advanced filters.
 
Check out ExcelTips: Filters and Filtering today!