Dynamic Password for Locking Sheets

sassriverrat

Well-known Member
Joined
Oct 4, 2018
Messages
655
I have a bunch of macros that run sheets and each one unlocks the sheet, runs, and then locks the sheet. Instead of having the password within the macro code, I'd like for the password to get pulled from cell ("A1") (for example) on hidden sheet ("Developer") so that I can change the password by just typing a new one in A1 when I unhide that sheet. Anyone have any ideas? Thanks
 

Excel Facts

How to fill five years of quarters?
Type 1Q-2023 in a cell. Grab the fill handle and drag down or right. After 4Q-2023, Excel will jump to 1Q-2024. Dash can be any character.
Try this code for each worksheet you wish to protect:

Code:
Worksheets("Sheet1").Protect Password:=Worksheets("Developer").Range("A1").Value

The code for unprotecting the sheets would be:

Code:
Worksheets("Sheet1").UnProtect Password:=Worksheets("Developer").Range("A1").Value


Chris
 
Upvote 0
Worked like a champ. Thanks! I wasn’t using .Value when I tried it a few days ago and gave up. Makes sense
 
Upvote 0

Forum statistics

Threads
1,214,982
Messages
6,122,580
Members
449,089
Latest member
Motoracer88

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