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

Tips.Net > ExcelTips Home > Workbooks > Automatically Hiding Personal.xls

Automatically Hiding Personal.xls

Summary: If you leave your Personal.xls workbook visible from one Excel session to another, you may find that you unwittingly make changes you never intended to make. Here’s some ideas on how to protect the workbook or at least stop yourself from making those unwanted changes. (This tip works with Microsoft Excel 97, Excel 2000, Excel 2002, Excel 2003, and Excel 2007.)

Ken is having a problem with his Personal.xls workbook. When he needs to work on it, he unhides it. If he forgets to rehide it when he is done, then the next time he starts Excel the Personal.xls workbook is immediately visible. Since it looks like a new, blank worksheet, he often starts typing in it and this messes up her Personal.xls workbook. He wonders if there is a way to automatically force Personal.xls to be hidden if he forgets to hide it manually.

There are a couple of things you need to keep in mind. First, if you are only making changes to macros in Personal.xls, you don't need to unhide the workbook to work on those macros. Instead, display the VBA editor and use the object browser to make sure you are working on the macros in the Personal.xls workbook. When you are done editing the macros, you can save them without ever needing to make the workbook visible.

If this still doesn't work for you—perhaps you have some other reason to make Personal.xls visible—then you could make some sort of editing change to the first worksheet in the workbook. For instance, place the text "THIS IS PERSONAL" into cell A1 of the workbook. Do something to make it stand out (bold, colors, flashing, etc.), and you will never again miss that you are working in the Personal.xls workbook when you first start Excel.

If you want a macro approach to make sure that the workbook is hidden, then you could add the following code to the ThisWorkbook object for Personal.xls:

Private Sub Workbook_BeforeClose(Cancel As Boolean)
    Windows("PERSONAL.XLS").Visible = False
    ThisWorkbook.Save
End Sub

The macro is executed just before the workbook is closed (when happens when Excel is exited). It hides the workbook and then saves it. That way, the next time you start Excel, Personal.xls will be automatically hidden.

Tip #3371 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!

Helpful Links

Ask an Excel Question
Make a Comment

Tips.Net Home
Vital News Home

ExcelTips FAQ
ExcelTips Premium

Learn Access Now

Beauty Tips
Bugs and Pests Tips
Car Tips
Cleaning Tips
College Tips
Cooking Tips
Excel2007 Tips
ExcelTips
Family Tips
Gardening Tips
Health Tips
Home Tips
Money Tips
Organizing 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.)