View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.programming
ties[_2_] ties[_2_] is offline
external usenet poster
 
Posts: 7
Default problem using protected sheets

Hi Dave,

Thanks a lot. I tried it and it seems to work flawlessly. This will save me
a lot of work!

Regards
Thijs


"Dave Peterson" schreef in bericht
...
If you already have the outline applied, you can protect the worksheet in

code
(auto_open/workbook_open??).

Option Explicit
Sub auto_open()
With Worksheets("sheet1")
.Protect Password:="hi", userinterfaceonly:=True
.EnableOutlining = True
End With
End Sub

It needs to be reset each time you open the workbook. (excel doesn't

remember
it after closing the workbook.)

ties wrote:

I have the following problem, which I'm not sure is possible to

solve/work
around:

In my sheet I grouped several columns and rows. After protecting the
worksheet it's not possible anymore to hide or show the groups, which I
really need to be able to do.

I'm using Excel 97.

Does anyone know a solution or work around?

Thanks in advance
Thijs van Bon


--

Dave Peterson