How to Unprotect an Excel Sheet

This wikiHow teaches you how to unprotect a sheet within a Microsoft Excel workbook in Windows or macOS. If the sheet is protected by a password and you're not sure what it is, you can use Google Sheets or a VBA script (in earlier versions...
Method 1 of 3:

Using Microsoft Excel

  1. How to Unprotect an Excel Sheet Picture 1How to Unprotect an Excel Sheet Picture 1
    Open the workbook with a protected sheet in Microsoft Excel. You can usually do this by double-clicking the file's name on your computer.
  2. How to Unprotect an Excel Sheet Picture 2How to Unprotect an Excel Sheet Picture 2
    Right-click the tab for the protected sheet. Each sheet's tab appears along the bottom of Excel. The protected sheet often has a padlock icon in some versions of Excel. Right-click the tab (or the lock icon) to open the context menu.[1]
    1. If multiple sheets are protected, you'll need to remove protection on each sheet separately.
  3. How to Unprotect an Excel Sheet Picture 3How to Unprotect an Excel Sheet Picture 3
    Click Unprotect Sheet. If the sheet is not password-protected, it will unlock immediately. If not, you'll be prompted to enter a password into a pop-up window.
  4. How to Unprotect an Excel Sheet Picture 4How to Unprotect an Excel Sheet Picture 4
    Enter the password and click OK. If the password is correct, the sheet will become unprotected.
    1. If you don't know the password, see the Using Google Sheets method. This method lets you upload the file to Google Sheets, which removes all protections added in Excel.
    2. If you're using Excel 2010 or earlier and prefer not to upload to Google Sheets, see the Using VBA Code in Excel 2010 and Earlier method.
Method 2 of 3:

Uploading to Google Sheets

  1. How to Unprotect an Excel Sheet Picture 5How to Unprotect an Excel Sheet Picture 5
    Go to https://drive.google.com in a web browser. If you have a Google account, you can use Google Sheets (a free online app that's similar to Excel) to remove protection from all sheets in a workbook—even if you don't know the password.
    1. If you're not already signed into your Google account, follow the on-screen instructions to sign in now.
    2. If you don't have a Google account, see How to Make a Google Account.
  2. How to Unprotect an Excel Sheet Picture 6How to Unprotect an Excel Sheet Picture 6
    Click + New. It's at the top-left corner of the page.
  3. How to Unprotect an Excel Sheet Picture 7How to Unprotect an Excel Sheet Picture 7
    Click File Upload. This opens your computer's Open panel.
  4. How to Unprotect an Excel Sheet Picture 8How to Unprotect an Excel Sheet Picture 8
    Select the Excel file you want to edit and click Open. This uploads the file to your Google Drive.
  5. How to Unprotect an Excel Sheet Picture 9How to Unprotect an Excel Sheet Picture 9
    Double-click the Excel file in your Google Drive. You'll probably have to scroll down to find it. This opens a preview of the file.
  6. How to Unprotect an Excel Sheet Picture 10How to Unprotect an Excel Sheet Picture 10
    Click the Open with menu. It's at the top of the preview. A menu will expand.
  7. How to Unprotect an Excel Sheet Picture 11How to Unprotect an Excel Sheet Picture 11
    Click Google Sheets. Now that the file is open for editing in Google Sheets, any sheet protections added in Excel have been removed.
  8. How to Unprotect an Excel Sheet Picture 12How to Unprotect an Excel Sheet Picture 12
    Re-download the file to your computer. If you want to keep working on the file in Microsoft Excel rather than Google Sheets, you can download this newly-unprotected version of your workbook using the following steps:
    1. Click the File menu at the top-left corner of your sheet.
    2. Click Download As.
    3. Click Microsoft Excel (.xlsx) .
    4. Select a folder to save the file. If you want to keep the original version of the file (the one with a protected sheet) intact, type a new name for the file as well.
    5. Click Save to download the file.
Method 3 of 3:

Using VBA Code in Excel 2010 and Earlier

  1. How to Unprotect an Excel Sheet Picture 13How to Unprotect an Excel Sheet Picture 13
    Open the workbook that has a protected sheet in Excel. You can usually do this by double-clicking the file's name on your computer. Excel files usually end with the file extension .xls or .xlsx.
    1. Use this method if you have already tried unlocking a sheet but found that it's password-protected (and you don't know the password).
    2. This method will not work in Excel 2013 or later.
  2. How to Unprotect an Excel Sheet Picture 14How to Unprotect an Excel Sheet Picture 14
    Re-save the file in the xls format. If the file you're working on has the ".xlsx" extension (common if it was created or edited in newer versions of Excel), you'll only be able to use this method if you first convert it to the Excel 97-2003 (.xls) format. Here's how to do this:[2]
    1. Click the File menu at the top-right corner.
    2. Click Save As.
    3. Go to the folder in which you want to save the file.
    4. Select Excel 97-2003 (.xls) from the "Save as type" or "File Format" menu.
    5. Click Save.
    6. Follow the on-screen prompts to make any necessary conversions.
  3. How to Unprotect an Excel Sheet Picture 15How to Unprotect an Excel Sheet Picture 15
    Press Alt+F11 to open the Visual Basic Editor.
  4. How to Unprotect an Excel Sheet Picture 16How to Unprotect an Excel Sheet Picture 16
    Right-click the workbook's file name in the "Project - VBAProject" panel. It's at the top of the left panel. Make sure you right-click the option that contains the file's name (ends with ".xls"), which should be at the top. A menu will expand.[3]
  5. How to Unprotect an Excel Sheet Picture 17How to Unprotect an Excel Sheet Picture 17
    Click Insert on the menu. Another menu will expand.
  6. How to Unprotect an Excel Sheet Picture 18How to Unprotect an Excel Sheet Picture 18
    Click Module. This inserts a new module in which you'll paste some code.
  7. Copy the code. Highlight the code that follows this text, then press Ctrl+C (PC) or Command+C to copy it:
    Sub PasswordBreaker() Breaks worksheet password protection. Dim i As Integer, j As Integer, k As Integer Dim l As Integer, m As Integer, n As Integer Dim i1 As Integer, i2 As Integer, i3 As Integer Dim i4 As Integer, i5 As Integer, i6 As Integer On Error Resume Next For i = 65 To 66: For j = 65 To 66: For k = 65 To 66 For l = 65 To 66: For m = 65 To 66: For i1 = 65 To 66 For i2 = 65 To 66: For i3 = 65 To 66: For i4 = 65 To 66 For i5 = 65 To 66: For i6 = 65 To 66: For n = 32 To 126 ActiveSheet.Unprotect Chr(i) & Chr(j) & Chr(k) & _ Chr(l) & Chr(m) & Chr(i1) & Chr(i2) & Chr(i3) & _ Chr(i4) & Chr(i5) & Chr(i6) & Chr(n) If ActiveSheet.ProtectContents = False Then MsgBox "Password is " & Chr(i) & Chr(j) & _ Chr(k) & Chr(l) & Chr(m) & Chr(i1) & Chr(i2) & _ Chr(i3) & Chr(i4) & Chr(i5) & Chr(i6) & Chr(n) Exit Sub End If Next: Next: Next: Next: Next: Next Next: Next: Next: Next: Next: Next End Sub 
  8. How to Unprotect an Excel Sheet Picture 19How to Unprotect an Excel Sheet Picture 19
    Right-click the new module and select Paste. The copied code now appears in the module window.
  9. How to Unprotect an Excel Sheet Picture 20How to Unprotect an Excel Sheet Picture 20
    Press F5 to run the code. Excel will now run the code, which can take several minutes. Once the code is finished running, a new password will appear on a pop-up window.
    1. The new password will be a random number of "As" rather than the original password.
  10. How to Unprotect an Excel Sheet Picture 21How to Unprotect an Excel Sheet Picture 21
    Click OK on the Password pop-up. A new password will appear but you won't need to write it down. Clicking OK will remove sheet protection automatically.[4]
    1. If you had to convert the file to an earlier format, you can now save the workbook again as an .xlsx file.
4.5 ★ | 2 Vote