Grouping in protected sheets

  • Thread starter Thread starter Maia
  • Start date Start date
M

Maia

Hi,

I have a sheet where I need to protect some formulas so that people won't
mess them. However, when I do this Excel does not let me use the + (or -)
buttons to open the groupings.
Any suggestions how to handle this problem?

thanks in advance!!

Maya
 
You have to set the worksheet's EnableOutlining property to true.
Unfortunately this is a setting that must be set every time you open the
workbook because it does not stick.

You can run this code in your workbook's startup macro to handle this.

With Worksheets("Sheet1")
.EnableOutlining = True
.Protect Password:="pass"
End With


--
Jim Rech
Excel MVP
| Hi,
|
| I have a sheet where I need to protect some formulas so that people won't
| mess them. However, when I do this Excel does not let me use the + (or -)
| buttons to open the groupings.
| Any suggestions how to handle this problem?
|
| thanks in advance!!
|
| Maya
|
|
 

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

Back
Top