LoginSignup
0
0

More than 5 years have passed since last update.

Excelで保護されたシートを一括解除

Posted at
全シート保護解除.vba
Sub 全シートの保護を解除する()
  Dim sh As Object

  On Error Resume Next

  For Each sh In Sheets
    sh.Unprotect
  Next sh

End Sub
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0