Please Note: This article is written for users of the following Microsoft Excel versions: 97, 2000, 2002, and 2003. If you are using a later version (Excel 2007 or later), this tip may not work for you. For a version of this tip written specifically for later versions of Excel, click here: Forcing a Worksheet to be Protected Again.

Forcing a Worksheet to be Protected Again

Written by Allen Wyatt (last updated September 21, 2019)
This tip applies to Excel 97, 2000, 2002, and 2003


Barry can lock a worksheet so that only those to whom he gives the password can edit it. If the person enters the password, makes edits, and then saves the workbook containing the worksheet, that worksheet is then unprotected. Barry wonders if there is a way that, when saving the worksheet, Excel can remind the user to once again protect the worksheet using the same password originally used.

There are several ways you can go about solving this problem. If you've assigned a password to a worksheet, then you simply need to make sure that the same password is used to re-protect the worksheet when the workbook is saved. This is easily done by using a macro that can be tied to the BeforeSave event. This macro should be added to the ThisWorkbook object:

Private Sub Workbook_BeforeSave(ByVal SaveAsUI As Boolean, Cancel As Boolean)
    Sheets("ABC").Protect ("XYZ")
End Sub

This example assumes that the worksheet you want to protect is named ABC and that the password used to protect the worksheet is XYZ. You'll want to change these values to reflect your actual worksheet and password.

Note that this macro automatically re-protects the worksheet whenever the workbook is saved. Thus, if a user has a long working session with the worksheet and saves the workbook many times during that session, then they will need to unprotect the worksheet quite often. If you prefer, you can create a macro that will ask if the worksheet should be re-protected:

Private Sub Workbook_BeforeSave(ByVal SaveAsUI As Boolean, Cancel As Boolean)
    If MsgBox("Reprotect Sheet ABC?", vbYesNoCancel) = vbYes Then
        Sheets("ABC").Protect ("XYZ")
    End If
End Sub

Of course, this approach means that it is possible that a worksheet would not be protected again, if the user chose to not re-protect it.

Another approach doesn't involve using macros at all but uses a different way to do your protection. In traditional worksheet protection, you format individual cells as unlocked, then you apply protection to the worksheet so that any locked cells cannot be changed. If you don't mark any cells as unlocked (which seems to be what Barry is doing), then nothing in the worksheet can be changed without the password.

Starting with Excel 2002 you can actually protect individual ranges of cells within a worksheet. Follow these steps:

  1. Choose Protection from the Tools menu and then choose Allow Users to Edit Ranges. Excel displays the Allow Users to Edit Ranges dialog box. (See Figure 1.)
  2. Figure 1. The Allow Users to Edit Ranges dialog box.

  3. Click the New button. Excel displays the New Range dialog box. (See Figure 2.)
  4. Figure 2. The New Range dialog box.

  5. In the Title box, enter the name you want to use for this range.
  6. In the Refers to Cells box, enter the range you want users to be able to edit. (If there are multiple ranges you want to use this same password, you can separate those ranges with a comma.)
  7. In the Range Password box, enter the password you want to give to your users.
  8. Click on OK. You are again asked to enter the password.
  9. Enter the password you used in step 5 a second time. The range now appears in the Allow Users to Edit Ranges dialog box.
  10. Click OK to close the Allow Users to Edit Ranges dialog box.
  11. Protect your worksheet as you normally would.

There is only one thing you need to remember when you protect your worksheet (step 9). Since you've not unlocked any cells, then all cells in the worksheet will be protected. You need to make sure that the protection you apply allows locked cells to be selected. If, after the worksheet is protected, a user tries to edit a cell that is in the range you specified in step 4, they are asked for the password you specified in step 5. When they provide it, they can make edits to any cells in the range.

The cool thing about this approach is that worksheet protection is not removed—the worksheet is still protected because the user never removed that protection. Thus, the user never needs to know the password for the entire worksheet. When the user closes and reopens the workbook, the worksheet is still protected, just as you need. Plus, you don't have the unavoidable downside of macros—that they can be disabled by a user when they open the workbook.

Note:

If you would like to know how to use the macros described on this page (or on any other page on the ExcelTips sites), I've prepared a special page that includes helpful information. Click here to open that special page in a new browser tab.

ExcelTips is your source for cost-effective Microsoft Excel training. This tip (11972) applies to Microsoft Excel 97, 2000, 2002, and 2003. You can find a version of this tip for the ribbon interface of Excel (Excel 2007 and later) here: Forcing a Worksheet to be Protected Again.

Author Bio

Allen Wyatt

With more than 50 non-fiction books and numerous magazine articles to his credit, Allen Wyatt is an internationally recognized author. He is president of Sharon Parq Associates, a computer and publishing services company. ...

MORE FROM ALLEN

Conditional Formatting for Errant Phone Numbers

Conditional formatting can be used to draw attention to all sorts of data based upon the criteria you specify. Here's how ...

Discover More

Keyboard Shortcut for Comments

Adding comments or notes to the cells in your worksheets can help to document different aspects of that worksheet. Adding ...

Discover More

Always Opening a Workbook that is Editable

When you send a workbook to a coworker, it can be bothersome if that person has problems using what you created. There is ...

Discover More

Solve Real Business Problems Master business modeling and analysis techniques with Excel and transform data into bottom-line results. This hands-on, scenario-focused guide shows you how to use the latest Excel tools to integrate data from multiple tables. Check out Microsoft Excel 2013 Data Analysis and Business Modeling today!

More ExcelTips (menu)

Viewing Same Cells on Different Worksheets

When switching from one worksheet to another, you might want to view the same portion of the new worksheet that you were ...

Discover More

Ordering Worksheets Based on a Cell Value

Need to sort your worksheets so that they appear in an order determined by the value of a cell on each worksheet? Using a ...

Discover More

Synchronized Workbook and Worksheet Names

When you work on older workbooks in Excel, you may notice that the name of the worksheet tab and the workbook itself are ...

Discover More
Subscribe

FREE SERVICE: Get tips like this every week in ExcelTips, a free productivity newsletter. Enter your address and click "Subscribe."

View most recent newsletter.

Comments

If you would like to add an image to your comment (not an avatar, but an image to help in making the point of your comment), include the characters [{fig}] (all 7 characters, in the sequence shown) in your comment text. You’ll be prompted to upload your image when you submit the comment. Maximum image size is 6Mpixels. Images larger than 600px wide or 1000px tall will be reduced. Up to three images may be included in a comment. All images are subject to review. Commenting privileges may be curtailed if inappropriate images are posted.

What is five less than 6?

There are currently no comments for this tip. (Be the first to leave your comment—just use the simple form above!)


This Site

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.

Newest Tips
Subscribe

FREE SERVICE: Get tips like this every week in ExcelTips, a free productivity newsletter. Enter your address and click "Subscribe."

(Your e-mail address is not shared with anyone, ever.)

View the most recent newsletter.