187k views
3 votes
How to unprotect excel worksheet without password

User Mardi
by
7.2k points

1 Answer

6 votes

Final answer:

To unprotect an Excel worksheet without the password, you can use a macro to remove the protection.

Step-by-step explanation:

In order to unprotect an Excel worksheet without the password, you can try using a macro to remove the protection. Here's how:

  1. Press Alt+F11 to open the Visual Basic for Applications (VBA) editor.
  2. Click on Insert and then Module to insert a new module.
  3. Copy and paste the following code into the module: Sub UnprotectSheet()
    ActiveSheet.Unprotect
    End Sub
  4. Press Ctrl+S to save the workbook as a macro-enabled file (.xlsm).
  5. Close the VBA editor and return to Excel.
  6. Press Alt+F8 to open the macro dialog box.
  7. Select the UnprotectSheet macro and click Run.

By running this macro, the protection on the worksheet will be removed, allowing you to edit it without the need for a password.

User Patricjansson
by
7.8k points