Help with Workbook and WorkSheet Protect/Un-Protect Macro

WWII_Buff

Board Regular
Joined
Nov 13, 2017
Messages
88
Hello all!

I need help with a macro to password protect and unprotect several sheets at once - and prompt the user when an incorrect password is given. Also, when each sheet is protected I would like user only to have access to 1. group/ungroup, 2. edit column widths, 3. access unlocked cell, 4. select but not edit locked cells.

I haven't been able to cobble anything together that give me all requirements in 1 macro. I wish this stuff came easy to me :(

Thanks for your help.
 

Excel Facts

How can you turn a range sideways?
Copy the range. Select a blank cell. Right-click, Paste Special, then choose Transpose.
Have you thought where you're going to store this password? It is not fail safe for someone looking into the code to find this password. You could write a bit of obfuscation code but ultimately someone could figure it out. So, how secure does this need to be?

Otherwise, just set all the sheets protections up like you want them; allowing for access to groups and such as you said. Protect all sheets and then add a button to allow the user to unprotect selected sheets. Might need a userform that allows for listbox selection of sheets.
 
Upvote 0
Hi Roderick! Thanks for your response.

So here is what I have so far - added into the module. However, I can't get the .EnableOutlining to work. I know it's some how should reside in the workbook, but does that mean I need to of the same macro twice? I am not to worried about the users finding the password as much as I don't want anyone "mistakenly" overwriting the formulas.

Code:
Sub Protect_sheets() 
Dim ws As Worksheet
Dim pwd As String


pwd = "reporting"
For Each ws In Worksheets
    ws.Protect Password:=pwd, AllowFormattingColumns:=True
        [COLOR=#0000cd][B].EnableOutlining = True[/B][/COLOR]
Next ws
        
End Sub

Sub UnProtect_sheets()
    Dim ws As Worksheet
    Dim MyPassword As String
    MyPassword = InputBox("Enter Password.", "Password Entry")


    If MyPassword = "pass" Then
        For Each ws In Worksheets
            ws.UnProtect Password:="reporting"
        Next ws
        
        MsgBox "All sheets are now unprotected.", vbCritical, "Sheets Unprotected"
    Else
        MsgBox "You entered an incorrect password.", , "Password Failed"
        Exit Sub
    End If
End Sub
 
Last edited:
Upvote 0

Forum statistics

Threads
1,217,307
Messages
6,135,746
Members
449,963
Latest member
palm

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