Locked Sheets and Hiding Rows

Newbienew

Active Member
Joined
Mar 17, 2017
Messages
376
Office Version
  1. 2016
Platform
  1. Windows
I am having an issue with my sheets being locked and using a MACRO transition code to hide and unhide rows by clicking on a circle shape . My Transition code hides and unhides rows 16-17. I would like to still hide and unhide these rows even if the sheet is locked. But currently when i lock it, it use the macro button i get an error. Is there anything that i can do or is ther anything that can be done? Thank you for your help in advance
 

Excel Facts

Show numbers in thousands?
Use a custom number format of #,##0,K. Each comma after the final 0 will divide the displayed number by another thousand
Is the only issue one of getting an error when you try to run the macro?

If so add "ActiveSheet.Unprotect" as your first line of the macro and "ActiveSheet.Protect" as the last line.
That will ensure that the macro can do whatever adjustments are required before locking the sheet again.
 
Upvote 0
As well as Brian's suggestion, there are 2 other options that may or may not suit you.

1. If you unprotect the sheet (manually) then as you go to protect it again there is an option in the list on that dialog to 'Allow all users of this worksheet to: Format rows'. If you check that box then your hide/unhide macro should work without needing to unprotect the worksheet. Of course, checking that box means that other worksheet users can also format rows (including hide/unhide) and that may not suit you.

2. If the above is not suitable, another option is to unprotect the sheet manually, then run this code (only needs to be done once) and then the sheet is protected against worksheet users but not against a macro so you can do whatever you want with a macro without needing to unprotect/reprotect.
Before running the code, change the sheet name to your sheet name and adjust the password to yours. If you are not using a password, just leave out the red section altogether.
Rich (BB code):
Sub Protect_UIO()
  Sheets("sheet name").Protect Password:="abc", Userinterfaceonly:=True
End Sub
 
Last edited:
Upvote 0
Further to Brian's and Peter's suggestions, if you want to set the UserInterfaceOnly to True for all worksheets (I'm assuming from your opening post that you have more than one and that you are using the same password for all sheets), you can use a Workbook_Open event placed in the Workbook module:-

Code:
Private Sub Workbook_Open()

Dim ws As Worksheet

        For Each ws In Worksheets
        ws.Protect Password:="YOUR PASSWORD HERE", UserInterFaceOnly:=True
Next ws

End Sub

Each time the workbook is opened, the code will set the UserInterfaceOnly to True thus allowing all macros to run whilst preventing any changes being made by any Users.

I hope that this helps.

Cheerio,
vcoolio.
 
Upvote 0
Each time the workbook is opened, the code will set the UserInterfaceOnly to True ....
Thanks for the prod, vcoolio. My previous post may have been misleading ..
.. run this code (only needs to be done once)
.. and needs clarification. It only needs to be run once - while the workbook remains open. So, if using the user interface only idea, it would be a good idea to have Workbook_Open code whether it applies the UIO to just this sheet or all sheets.
 
Upvote 0
No worries Peter.

BTW. Notifications are coming through OK now. It was a server problem and this blasted NBN is really proving to be a right royal pain in the you know what! My old ADSL2 connection was faster and had minimal issues!

Thanks again for looking into it Peter.

Cheerio,
vcoolio.
 
Upvote 0
It worked perfectly, Thank you Mr. Peter and to all that replied and gave aid.
 
Upvote 0
Sub transaction1()
activesheets.Unprotect
Rows("34:38").Hidden = Not Rows("34:38").Hidden
ActiveSheet.Protect
End Sub

I am not sure what is going on but i am getting an error now and it says that i have to debug the ROWS portion. It says it regardless of activesheet.unprotect and activesheet.protect
Is tehre any thing that can be done to correct this
 
Upvote 0
Sub transaction1()
activesheets.Unprotect
Rows("34:38").Hidden = Not Rows("34:38").Hidden
ActiveSheet.Protect
End Sub

I am not sure what is going on but i am getting an error now and it says that i have to debug the ROWS portion. It says it regardless of activesheet.unprotect and activesheet.protect
Is tehre any thing that can be done to correct this

When I ran your code, after I changed "activesheets" to "activesheet", no "s", it worked.
 
Upvote 0
I still get the debug if i add that or not. Rows("34:38").Hidden = Not Rows("34:38").Hidden is highlighted each time
 
Upvote 0

Forum statistics

Threads
1,215,004
Messages
6,122,659
Members
449,091
Latest member
peppernaut

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