Brian was perplexed by the fact that when he starts Excel 2002, the Task pane momentarily appears and is then overlaid by the standard blank workbook. This happens in spite of the fact that he has the Task pane set to show at start-up (Tools | Options | View tab), and the same selection is chosen at the bottom of the Task pane itself.
Even though Brian is using Excel 2002, the problem he experienced could also occur for those using Excel 2003. Excel automatically hides the Task pane upon startup if your copy of Excel loads any files automatically. For instance, if you have any worksheets in your Startup folder, or if you have a personal.xls file that loads, then the Task pane will automatically be obscured. It appears that this behavior—despite what you explicitly specify for the Task pane to do—is built into Excel.
There are three ways around this problem. The first is to make sure that nothing automatically loads when Excel starts. For many people, this may not be a practical solution—after all, Personal.xls is often used for "global" user macros and customizations. The second solution, then, is to add more programming code to the file being opened automatically (for instance, Personal.xls). This code is designed to run automatically when the file is opened, and it displays the Task pane:
Private Sub Workbook_Open() On Error Resume Next Application.CommandBars("Task Pane").Visible = True End Sub
If it is not possible for you to add such coding to the file or files being opened, then you can modify a Registry entry to tell Excel to leave the Task pane open. As always, be careful when you edit the Registry, as a mistake can make your system unstable or totally unusable.
Get out of Excel and follow these steps:
HKEY_CURRENT_USER\Software\Microsoft\Office\11.0\Common\General
When you restart Excel, the Task pane should remain visibile.
Note:
ExcelTips is your source for cost-effective Microsoft Excel training. This tip (3066) applies to Microsoft Excel 2002 and 2003.
Program Successfully in Excel! John Walkenbach's name is synonymous with excellence in deciphering complex technical topics. With this comprehensive guide, "Mr. Spreadsheet" shows how to maximize your Excel experience using professional spreadsheet application development tips from his own personal bookshelf. Check out Excel 2013 Power Programming with VBA today!
Using the keyboard to switch between Excel spreadsheets.
Discover MoreExcel provides spell-checking capabilities on the text you enter in a worksheet. It utilizes the same dictionaries and ...
Discover MoreThere are lots of error messages that can pop up in Excel from time to time. One of the most confusing may be the ...
Discover MoreFREE SERVICE: Get tips like this every week in ExcelTips, a free productivity newsletter. Enter your address and click "Subscribe."
There are currently no comments for this tip. (Be the first to leave your comment—just use the simple form above!)
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 © 2024 Sharon Parq Associates, Inc.
Comments