Macro to protect all sheets that are not hidden

mgeiss

New Member
Joined
Sep 12, 2014
Messages
14
Hello,

I'm trying to create a macro to protect all sheets at the same time. Below is what I have been trying, but its not working. ANy ideas?



Sub protectsheets()
Dim wSheet As Worksheet
For Each wSheet In ActiveWorkbook.Worksheets
wSheet.Protect Password:="margin"
Next wSheet
End Sub


Sub unprotectsheets()
Dim wSheet As Worksheet
For Each wSheet In ActiveWorkbook.Worksheets
wSheet.Protect Password:="margin"
Next wSheet
End Sub
 

Excel Facts

Best way to learn Power Query?
Read M is for (Data) Monkey book by Ken Puls and Miguel Escobar. It is the complete guide to Power Query.
Try
Code:
   If wSheet.Visible Then wSheet.Protect Password:="margin"
 
Upvote 0
If the sheet is in veryhidden it also protects it, then:

Code:
Sub protectsheets()
    Dim wSheet As Worksheet
    For Each wSheet In ActiveWorkbook.Worksheets
        If wSheet.Visible = xlSheetVisible Then
            wSheet.Protect Password:="margin"
        End If
    Next wSheet
End Sub
 
Upvote 0

Forum statistics

Threads
1,215,963
Messages
6,127,960
Members
449,412
Latest member
montand

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top