Openning Grouped Columns in Protected Sheets

H

Hande & Tolga

We want to put such a protection to the sheet that, the
protection will not prevent the user from openning
grouped columns.
 
J

Jim Rech

This is possible only through a macro, for example:

Sub a()
With Sheet1
.EnableOutlining = True
.Protect , True, True, True, True
End With
End Sub

This setting does not get saved with the workbook, so it must be reset by
running this macro each time the workbook is opened.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top