This is how I protect all my sheets and then go back an unportect one. You could always reprotect that one with no password.
Sub ProtectAll()
spw="your password"
On Error GoTo errEnd
izz = 1
Do While izz <= 9999
Sheets(izz).Protect Password:=spw, _
DrawingObjects:=False, Contents:=True, Scenarios:=True, _
AllowFormattingCells:=True, AllowFormattingColumns:=True, AllowFormattingRows:=True, _
AllowFiltering:=True, UserInterfaceOnly:=True
Sheets(izz).EnableOutlining = True
izz = izz + 1
Loop
'
errend:
' unprotect the scratchpad sheet
Sheets("Worksheet").Unprotect Password:=spw
' you can now protect the sheet with no password or a different one.
Bookmarks