VBA Code for Worksheet Password is protecting other open workbooks - how do I change the code?

Joyner

Well-known Member
Joined
Nov 15, 2005
Messages
1,202
Hello and thank you for any help.

I have a very complicated Macro automated Excel Workbook that has numerous worksheets with a lot of vba routines. A lot of the routines protect and unprotect the worksheets with a password. There are now reports of other open workbooks being password protected and I have traced it to this particular workbook code.

I also believe it is related to code on the worksheet modules where there is code for Activate, and possibly other Worksheet events, but I'm not sure.


In one of my regular Modules there is:

Public Const sPW = "abc"

And usually the password code is simple:

ActiveSheet.Unprotect sPW

ActiveSheet.Protect DrawingObjects:=True, Contents:=True, Scenarios:=True _
, AllowFormattingCells:=True, AllowInsertingHyperlinks:=True, Password:=sPW



Sometimes the codes specifically refers to the sheet:

Sheets("xyz").Unprotect sPW

Sheets("xyz").Protect DrawingObjects:=True, Contents:=True, Scenarios:=True _
, AllowFormattingCells:=True, AllowInsertingHyperlinks:=True, Password:=sPW



But I "think" anything on the Worksheet events is simply

ActiveSheet.Protect Password:=sPW

And I think that is where my problem is.

So my question is, can I make one change somewhere to make sure my code is not password protecting other Workbooks, like change this:

Public Const sPW = "abc"

or will I need to change the code everywhere to ensure it specifically refers to the Worksheet in question like:

Sheets("xyz").Protect

Thank you
 

Excel Facts

Add Bullets to Range
Select range. Press Ctrl+1. On Number tab, choose Custom. Type Alt+7 then space then @ sign (using 7 on numeric keypad)
The safest option would be something like
Code:
ThisWorkbook.Sheets("xyz").Protect
That way it will only affect sheets in the workbook containing the code.
 
Upvote 0
Yes, what Fluff said!

If your routine is working with multiple Workbooks or you/the user might have other Workbooks open when the VBA module is executed the fact your code chooses "ActiveWorkbook" could be the issue. My recommendation is that you declare variables for your Workbooks and then reference them by the variable name assigned rather that just using "ActiveWorkbook".

For example:
Dim wb as Workbook

set wb = Workbooks("Example")
With wb
ActiveSheet.Protect Password:=sPW
End With
 
Last edited:
Upvote 0
The safest option would be something like
Code:
ThisWorkbook.Sheets("xyz").Protect
That way it will only affect sheets in the workbook containing the code.

Okay, thank you, I thought that may be the case.

One question since I am not the best at VBA and I always seem to run into issues for some syntax that seems straight forward.

should this:

ThisWorkbook.Sheets("xyz").Protect Password:=sPW


substitute for this without any issues?

ActiveSheet.Protect Password:=sPW
 
Upvote 0
As long as the sheet you want to protect/unprotect is in the same workbook as the code, then yes.
 
Upvote 0

Forum statistics

Threads
1,214,833
Messages
6,121,865
Members
449,052
Latest member
Fuddy_Duddy

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