Protecting Worksheets

Protect Worksheets

Introduction

The general protection options in Microsoft Excel are:

  • Contents
  • Objects
  • Scenarios

Protected worksheets don’t hide or protect sensitive data, so it’s different from file encryption. Generally, worksheet protection is suitable for presentation purposes. It prevents the end user from modifying data, content, and formatting in the worksheet.

Protect a Worksheet

Aspose.Cells provides a class, Workbook that represents a Microsoft Excel file. The Workbook class contains a Worksheets collection that allows access to each worksheet in an Excel file. A worksheet is represented by the Worksheet class.

The Worksheet class provides the Protect method that is used to apply protection on the worksheet. Protect method accepts the following parameters:

  • Protection Type, the type of protection to apply on the worksheet. Protection type is applied with the help of the ProtectionType enumeration.
  • New Password, the new password used to protect the worksheet.
  • Old Password, the old password, if the worksheet is already password protected. If the worksheet is not already protected then just pass null.

The ProtectionType enumeration contains the following pre-defined protections types:

Protection Types Description
All The user cannot modify anything on this worksheet
Contents The user cannot enter data in this worksheet
Objects The user cannot modify drawing objects
Scenarios The user cannot modify saved scenarios
Structure The user cannot modify the structure
Windows Protection is applied to windows
None No protection is applied

The example below shows how to protect a worksheet with a password.

After the above code is used to protect the worksheet, you can check the protection on the worksheet by opening it. Once you open the file and try to add some data to the worksheet, you will see the following dialog:

A dialog warning that a user can’t modify the worksheet
todo:image_alt_text

To work on the worksheet, unprotect the worksheet by selecting the Protection, then Unprotect Sheet from the Tools menu item.

After you select Unprotect Sheet menu item, a dialog will open that would prompt you to enter the password so that you may work on the worksheet as shown below:

|todo:image_alt_text|

Protect a few Cells in the Worksheet Using Microsoft Excel

There might be certain scenarios where you need to lock a few cells only in the worksheet. If you want to lock some specific cells in the worksheet, you have to unlock all the other cells in the worksheet. All the cells in a worksheet are already initialized for locking, you may check this opening any excel file into MS Excel and click the Format | Cells… to show Format Cells dialog box and then click the Protection tab and see a checkbox labeled “Locked” is checked by default.

The following points describe how to lock a few cells using MS Excel. This method applies to Microsoft Office Excel 97, 2000, 2002, 2003 and greater versions.

  1. Select the entire worksheet by clicking the Select All button (the gray rectangle directly above the row number for row 1 and to the left of column letter A).
  2. Click Cells on the Format menu, click the Protection tab, and then clear the Locked checkbox. This unlocks all the cells on the worksheet If the Cells command is not available, parts of the worksheet may already be locked. On the Tools menu, point to Protection, and then click Unprotect Sheet.
  3. Select just the cells you want to lock and repeat step 2, but this time select the Locked checkbox.
  4. On the Tools menu, point to Protection, click Protect Sheet and then click OK.
  5. In the Protect Sheet dialog box, you have the option to specify a password and select the elements that you want users to be able to change.

Protect a few Cells in the Worksheet Using Aspose Cells

In this method, we use Aspose.Cells API only to do the task.

Example: The following example exhibits how to protect a few cells in the worksheet. It unlocks all the cells in the worksheet first and then locks 3 cells (A1, B1, C1) in it. Finally, it protects the worksheet. The Style object contains a boolean property, IsLocked. You can set IsLocked property to true or false and apply Column/Row.ApplyStyle() method to lock or unlock the row/column with your desired attributes.

Protect a Row in the Worksheet

Aspose.Cells allows you to easily lock any row in the worksheet. Here, we can make use of ApplyStyle() method of Aspose.Cells.Row class to apply Style to a particular row in the worksheet. This method takes two arguments: a Style object and StyleFlag object which has all the members related to applied formatting.

The following example shows how to protect a row in the worksheet. It unlocks all the cells in the worksheet first and then locks the first row in it. Finally, it protects the worksheet. The Style object contains a boolean property, IsLocked. You can set IsLocked property to true or false to lock or unlock the row/column using the StyleFlag object.

Protect a Column in the Worksheet

Aspose.Cells allows you to easily lock any column in the worksheet. Here, we can make use of ApplyStyle() method of Aspose.Cells.Column class to apply Style to a particular column in the worksheet. This method takes two arguments: a Style object and StyleFlag object which has all the members related to applied formatting.

The following example shows how to protect a column in the worksheet. It unlocks all the cells in the worksheet first and then locks the first column in it. Finally, it protects the worksheet. The Style object contains a boolean property, IsLocked. You can set IsLocked property to true or false to lock or unlock the row/column using the StyleFlag object.

Allow Users to Edit Ranges

The following example shows how to allow users to edit a range in a protected worksheet.