Is there a way to unprotect a group rather than having to unprotect each sheet individually?
E Ed Davis Apr 22, 2007 #1 Is there a way to unprotect a group rather than having to unprotect each sheet individually?
J JE McGimpsey Apr 22, 2007 #2 One way: Public Sub UnprotectGroups() Const csPWORD As String = "drowssap" Dim ws As Worksheet For Each ws In ActiveWindow.SelectedSheets ws.Unprotect Password:=csPWORD Next ws End Sub
One way: Public Sub UnprotectGroups() Const csPWORD As String = "drowssap" Dim ws As Worksheet For Each ws In ActiveWindow.SelectedSheets ws.Unprotect Password:=csPWORD Next ws End Sub
E Ed Davis Apr 22, 2007 #3 I am assuming that the "drowssap" is the password for each sheet. Am I correct?
D Dave Peterson Apr 22, 2007 #4 Try spelling it in reverse for a hint. I always thought JE was sending me a subliminal message to make me sleepy!
Try spelling it in reverse for a hint. I always thought JE was sending me a subliminal message to make me sleepy!