How to unprotect multiple worksheets at once in Excel?
If you have a workbook contains multiple protected worksheets with the same password, and now you need to unprotect them for modifying some information. Maybe, you can unprotect the sheets one by one with Unprotect Sheet in Excel, but this will waste a lot of time when there are multiple sheets need to be unprotected. Here, I will introduce you some quick ways to unprotect multiple protected sheets.
Unprotect multiple sheets at once with VBA code
Unprotect multiple sheets at once with Kutools for Excel
Unprotect multiple sheets at once with VBA code
If you are good at VBA code, the following code may be help you quickly to unprotect multiple sheets at once.
1. Hold down the ALT + F11 keys, and it opens the Microsoft Visual Basic for Applications window.
2. Click Insert > Module, and paste the following code in the Module Window.
Sub unprotect_all_sheets()
On Error Goto booboo
unpass = InputBox("Please enter the password:")
For Each Worksheet In ActiveWorkbook.Worksheets
Worksheet.Unprotect Password:=unpass
Next
Exit Sub
booboo: MsgBox "There is s problem - check your password, capslock, etc."
End Sub
3. Then press F5 key to run the code, and enter the password that you have applied for the protected sheets. (the protected sheets must have the same password)See screenshot:
4. Click OK, and the protected sheets have been unprotected at once.
Unprotect multiple sheets at once with Kutools for Excel
Kutools for Excel’s Unprotect Worksheet is a handy tool which can help you quickly to unprotect multiple sheets with the same password at once.
Kutools for Excel : with more than 300 handy Excel add-ins, free to try with no limitation in 30 days. |
After installing Kutools for Excel, please do as follows:
1. Click Kutools Plus > Unprotect Worksheet, see screenshot:
2. In the Unprotect Worksheet dialog box, the protected sheets will be listed in the Worksheet list box, then check the sheet names that you want to unprotect, and click OK, then input the password that you have applied for the protected sheets (the protected sheets must have the same password) in the popped out dialog box, see screenshot:
3. And then click OK, a prompt box will remind you how many sheets have been unprotected. Then click OK, all the selected sheets have been unprotected in your workbook. See screenshot:
Tips: To protect all of the worksheets within your workbook at once, you just need to apply Protect Worksheet of Kutools for Excel as following screenshot shown:
Download and free trial Kutools for Excel Now!
Demo: Protect and Unprotect multiple sheets at once with Kutools for Excel
Related article:
How to protect multiple worksheets at once in Excel?
Best Office Productivity Tools
Supercharge Your Spreadsheets: Experience Efficiency Like Never Before with Kutools for Excel
Kutools for Excel boasts over 300 features, ensuring that what you need is just a click away...
Supports Office/Excel 2007-2021 & newer, including 365 | Available in 44 languages | Enjoy a full-featured 30-day free trial.
Office Tab Brings Tabbed interface to Office, and Make Your Work Much Easier
- Enable tabbed editing and reading in Word, Excel, PowerPoint, Publisher, Access, Visio and Project.
- Open and create multiple documents in new tabs of the same window, rather than in new windows.
- Increases your productivity by 50%, and reduces hundreds of mouse clicks for you every day!











