G Guest Oct 28, 2003 #1 Is there a way around being able to lock down the work sheet and use the group outline?
B Brandenkopf Oct 29, 2003 #2 In code you can enable the outlining before you protect the sheet, in the following way: This example enables outlining symbols on a protected worksheet. ActiveSheet.EnableOutlining = True ActiveSheet.Protect contents:=True, userInterfaceOnly:=True
In code you can enable the outlining before you protect the sheet, in the following way: This example enables outlining symbols on a protected worksheet. ActiveSheet.EnableOutlining = True ActiveSheet.Protect contents:=True, userInterfaceOnly:=True