VBA Issue with Worksheet Protection Passwords

grahamd_41

New Member
Joined
Jan 26, 2016
Messages
9
Hi all, I'm new to the forum although have been helped by it on many occasions.

I have come across a problem while trying to use VBA to protect my worksheet and was wondering if anyone else has had a similar issue.

Essentially I am adding two levels of protection; one level for the end user of the spread sheet and another level for my colleagues to modify the data without deleting or moving formulas/cells.
There is probably other ways of achieving what I have done, but after much Google and my limited knowledge of coding this is what I came up with.

Using a loop activated by a button press I UNLOCK editing capabilities:
  • Request a password from the user (pwd)
  • Loop through my worksheets
  • Unprotect worksheet with pwd
  • Unlock some cells
  • Protect without any password

On a second press of the button I LOCK editing capabilities
  • Loop through my worksheets
  • Unprotect the worksheet without password
  • Lock some cells
  • Protect with pwd

pwd is stored hidden in my workbook


With many breakpoints and step by step processing I found the problem I'm experiencing is at the exact point when trying to protect the worksheet (in BOLD), Excel throws up the "Unprotect Sheet" dialog box and asks for a password.

:eek: Why when trying to protect a sheet does it ask for an unprotect password? :eek:

Any ideas anyone? I've tried all sorts but the only cure I have found is using a password at this point. I don't want to have to do this as I want my colleagues to have the ability when required to gain full access to the spread sheet without needing a password.
 

Excel Facts

Square and cube roots
The =SQRT(25) is a square root. For a cube root, use =125^(1/3). For a fourth root, use =625^(1/4).
If Ipwd is incorrect then the error handler notifies that is the case and exits so it doesn't get to that point.
 
Upvote 0
If Ipwd is incorrect then the error handler notifies that is the case and exits so it doesn't get to that point.

Sorry, should explain that it goes to error handler at the point it attempts to unlock the worksheet (at the beginning of sub "unprotect")
 
Upvote 0
So it seems to me I may have to proceed with entering a password in for unprotecting the sheets while in editing mode.
Thanks for trying to help with my problem and the tips!
 
Upvote 0

Forum statistics

Threads
1,214,649
Messages
6,120,730
Members
448,987
Latest member
marion_davis

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