Written by Allen Wyatt (last updated June 14, 2023)
This tip applies to Excel 2007, 2010, 2013, 2016, 2019, and 2021
If you are developing workbooks for others to use, you may want your worksheets to retain whatever names you give them. Excel normally allows users to change worksheet names, as desired. If you don't want them to change, the only way to prevent it is to lock the workbook. You can take these steps:
Figure 1. The Protect Structure and Windows dialog box.
The user can no longer make changes to the names of the worksheet tabs, nor to anything else that affects the structure of the workbook. (For instance, they cannot enter new worksheets or delete existing ones.)
If you want to protect the workbook under the control of a macro, then you can use this code:
ActiveWorkbook.Protect Password:="MyPassword", Structure:=True
All you need to do is provide a password you want to use in place of the "MyPassword" example.
Note:
ExcelTips is your source for cost-effective Microsoft Excel training. This tip (6217) applies to Microsoft Excel 2007, 2010, 2013, 2016, 2019, and 2021. You can find a version of this tip for the older menu interface of Excel here: Locking Worksheet Names.
Best-Selling VBA Tutorial for Beginners Take your Excel knowledge to the next level. With a little background in VBA programming, you can go well beyond basic spreadsheets and functions. Use macros to reduce errors, save time, and integrate with other Microsoft applications. Fully updated for the latest version of Office 365. Check out Microsoft 365 Excel VBA Programming For Dummies today!
Need to make sure that your worksheet is locked, with only the blank cells accessible to editing? You can do this easily ...
Discover MoreWant to hide certain columns within a worksheet so the contents are not visible to others? The answer lies in formatting ...
Discover MoreDo you want user-entered data to be immediately protected so that it cannot be changed? This can be done relatively ...
Discover MoreFREE SERVICE: Get tips like this every week in ExcelTips, a free productivity newsletter. Enter your address and click "Subscribe."
2019-07-27 07:40:59
Alex B
If the concern about the sheet name changing is related to a macro using the name, you might consider using the sheets codename in the macro instead of the tab name.
Got a version of Excel that uses the ribbon interface (Excel 2007 or later)? This site is for you! If you use an earlier version of Excel, visit our ExcelTips site focusing on the menu 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