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

Ambidextrous Undo
Undo last command with Ctrl+Z or Alt+Backspace. If you use the Undo icon in the QAT, open the drop-down arrow to undo up to 100 steps.

Forum statistics

Threads
1,215,730
Messages
6,126,529
Members
449,316
Latest member
sravya

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