Protected Worksheet - Grouping and Formatting

KyrstinC

New Member
Joined
Feb 9, 2022
Messages
5
Office Version
  1. 2016
Platform
  1. Windows
Hello,

My question is: I have protected worksheets that I want to allow any end user to format the column width and the row height. I also want to allow any end user to group and ungroup existing grouped columns/rows. I have a VBA for the grouping issue -

Private Sub Workbook_Open()
With Worksheets("General")
.Protect Password:="Password", Userinterfaceonly:=True
.EnableOutlining = True
End With
End Sub

However, when I initially set the protection and check off "Format Columns" and "Format Rows" the VBA essentially overrides those settings. I am trying to figure out how to allow both the grouping/ungrouping as well as the column/row formatting at the same time. I have tried to run separate Macros for both, but they seemed to create further issues. Any suggestions would be extremely helpful!
 

Excel Facts

How to show all formulas in Excel?
Press Ctrl+` to show all formulas. Press it again to toggle back to numbers. The grave accent is often under the tilde on US keyboards.

Forum statistics

Threads
1,216,063
Messages
6,128,552
Members
449,458
Latest member
gillmit

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