
Welcome toExcel2007.Tips.Net
Cleaning Tips
Excel2007 Tips
Home Tips
WordTips
Correcting Pale Shading of Selected Cells
Converting Numeric Values to Text Values
Easily Dividing Values by a Set Amount
Unwanted Files Loading when Starting Excel
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 if you are using a version of Excel prior to Excel 2007:
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 password you want to use in place of the "MyPassword" example.