worksheet protection

  • Thread starter Thread starter Rob G
  • Start date Start date
R

Rob G

How can I unprotect grouped worksheets in a workbook as a
unit vs individually
 
One way (you have to use a macro):

Public Sub UnprotectGroupedSheets()
Const csPWORD As String = "drowssap"
Dim wsSheet As Worksheet
For Each wsSheet In ActiveWindow.SelectedSheets
wsSheet.UnProtect csPWORD
Next wsSheet
End Sub
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top