Skip to content

Instantly share code, notes, and snippets.

@ndthanh
Created July 22, 2017 15:28
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ndthanh/cae47d14649ffc86f12e94f201088ae3 to your computer and use it in GitHub Desktop.
Save ndthanh/cae47d14649ffc86f12e94f201088ae3 to your computer and use it in GitHub Desktop.
Sub unprotect_all_sheets()
On Error Goto booboo
unpass = InputBox("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
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment