From: RLD on
Is it possible to allow users to group & ungroup rows in a protected sheet?
From: Gord Dibben on
You must have the Data>Group and Outline area pre-set.

Then you add event code to the worksheet module.

Private Sub Worksheet_Activate()
With Me
.Protect Password:="justme", userinterfaceonly:=True
.EnableOutlining = True
End With
End Sub

This will allow showing and hiding detail on a protected sheet.


Gord Dibben MS Excel MVP

On Wed, 24 Mar 2010 12:41:01 -0700, RLD <RLD(a)discussions.microsoft.com>
wrote:

>Is it possible to allow users to group & ungroup rows in a protected sheet?