Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 45
Default Grouping and protecting worksheet

I have grouped several lines in a spreadsheet together. Example lines 2-50
are grouped. Lines 51-100 are grouped. On the side of the page excel allows
you to click on the plus or minus to hide or unhide the grouped cells. If i
protect the worksheet the grouping does not work, can this be fixed?
  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 35,218
Default Grouping and protecting worksheet


If you already have the outline/subtotals/autofilter 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
'.EnableAutoFilter = True
'If .FilterMode Then
' .ShowAllData
'End If
End With
End Sub

It needs to be reset each time you open the workbook. (Earlier versions of
excel don't remember it after closing the workbook. IIRC, xl2002+ will remember
the allow autofilter setting under tools|Protection|protect sheet, but that
won't help when you're filtering via code.)

Hamed parhizkar wrote:

I have grouped several lines in a spreadsheet together. Example lines 2-50
are grouped. Lines 51-100 are grouped. On the side of the page excel allows
you to click on the plus or minus to hide or unhide the grouped cells. If i
protect the worksheet the grouping does not work, can this be fixed?


--

Dave Peterson
Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
protecting formulas without protecting sheet so grouping still wor JM Excel Discussion (Misc queries) 1 June 4th 09 06:42 AM
Protecting a sheet and keeping grouping TommyD Excel Discussion (Misc queries) 0 May 9th 08 08:25 PM
Protecting a worksheet sherobot Excel Programming 5 June 8th 07 11:52 PM
Allow grouping / ungrouping while protecting the sheet Sachin Vaishnav Excel Programming 8 April 16th 06 12:21 AM
Protecting a worksheet but still allowing Outlining/Grouping? Joe Schmoe Excel Programming 0 September 2nd 05 07:28 PM


All times are GMT +1. The time now is 12:09 PM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"