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.
Comprehensive VBA Guide Visual Basic for Applications (VBA) is the language used for writing macros in all Office programs. This complete guide shows both professionals and novices how to master VBA in order to customize the entire Office suite for their needs. Check out Mastering VBA for Office 2010 today!
The installation process for Office and Excel allows you to specify a company name. If your company name later changes, ...
Discover MoreWhen you select a range of cells, Excel normally displays the sum of those selected cells on the status bar. If the sum ...
Discover MoreNeed to clear out a large amount of information saved on the Clipboard? All you need to do is to replace it with a small ...
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 © 2025 Sharon Parq Associates, Inc.
Comments