Prev: auto sum in lower right corner does not appear when I highligh
Next: Printing is different from different computers
From: saharafrog on 26 Mar 2010 11:39 I would like to lock a set of rows and columns, but still allow the users to use the grouping I have set on various spreadsheets. Is this possible? If so, how to make it work, current if I lock any posrtion of the page, then thry to use the grouping buttons... they tell me the data is locked and protected.
From: Gord Dibben on 26 Mar 2010 16:29
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 Fri, 26 Mar 2010 08:39:01 -0700, saharafrog <saharafrog(a)discussions.microsoft.com> wrote: >I would like to lock a set of rows and columns, but still allow the users to >use the grouping I have set on various spreadsheets. Is this possible? If >so, how to make it work, current if I lock any posrtion of the page, then >thry to use the grouping buttons... they tell me the data is locked and >protected. |