In Excel, you can protect and unprotect a workbook with a password. And that’s what we are going to discuss in this tutorial.
Apart from this, we will also discuss how to unprotect a workbook when you don’t remember the password, or you don’t the password.
Let’s get started.
Protect a Workbook
- Go to the Review Tab.
- Click on the “Protect Workbook”.
- Enter the password twice.
- Hit enter to protect the workbook.
Unprotect a Workbook
- Go to the Review tab.
- Click on the Protect Workbook.
- Enter the password to specify.
- In the end, click OK to unprotect the workbook.
If you enter the correct password, it unlocks the workbook. And if the password you have entered is incorrect, then it will show an error like below:
What IF I Don’t Remember (Or Don’t Know) the Password
There is a VBA code (Macro) that you can use to know the password if you don’t have it.
Sub PasswordBreaker()
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 "One usable 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
To use this code:
- Go to the Developer Tab and click “Visual Basic” to open the visual basic editor. Or you can also use the keyboard shortcut Alt + F11.
- After that, in the Visual Basic Editor, insert a new module.
- Once you insert a new module, paste the code into the code window on the right side of the module window.
- Now close the visual basic editor, go back to the developer tab, and click on the Macros button.
- From there, select the macro and click on the Run button.
The moment you click OK, the code changes the applied password to “AAAAAAAAAAA”.
And then, you can use this password to unprotect the workbook.
Protect Workbook While Saving It
Once you go to the File tab > Save As click the “Browse” option.
Now, locate the folder in the Save Dialog box where you want to save the file. And before you click Save, click on “Tools” and then “General Options”.
It will open a dialog box to apply the password to the file. Please enter the password to lock the file for opening and one password for modifying.
Once you enter the passwords to it, and then click OK and then confirm the password by entering. Click OK to apply the password. With this, you must enter the specified password when you open the file.