Hi Guys
I have a workbook which uses the "group and outline" function. How do i protect the worksheet and have the "group and outline" function made usuable?
Last edited by Climaxgp; 12-15-2009 at 05:49 AM.
This might help:
http://www.ozgrid.com/Excel/outlining-protected.htm
Thanks ncmay!
I tried putting in the code etc, but it still does not want to work!! Maybe i'm doing something wrong?
Try pasting the following in the "ThisWorkbook" module:
Code:Private Sub Workbook_Open() Dim sh As Worksheet For Each sh In Worksheets On Error Resume Next With sh .Protect Password:="", UserInterfaceOnly:=True .EnableSelection = xlUnlockedCells .EnableOutlining = True End With Next End Sub
It worked perfectly!!!
Thank you!!!
There are currently 1 users browsing this thread. (0 members and 1 guests)
Bookmarks