K
Khalil Handal
Is there a way to protect and unprotect *multiple* sheets at once. All the
sheets have the same password (say 1234).
sheets have the same password (say 1234).
Gary''s Student said:If you have sheets within a workbook that are all password protected with
"secret", then this small macro will un-protect all at once:
Sub AtRisk()
MyPass = "secret"
For Each sh In Sheets
sh.Unprotect (MyPass)
Next
End Sub