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.
Professional Development Guidance! Four world-class developers offer start-to-finish guidance for building powerful, robust, and secure applications with Excel. The authors show how to consistently make the right design decisions and make the most of Excel's powerful features. Check out Professional Excel Development today!
When developing worksheets, you often need to make room in your existing information for new information. One of the ...
Discover MoreOne of the many pieces of information that Excel keeps track of is your name. If you want to change your name for Excel's ...
Discover MoreThe Help system built into Excel can be quite a lifesaver when you need to find that quick tidbit that is slipping your ...
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