Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]() I'm mainly working with Excel 2000, but I also noticed this is the sam for 2003. When you protect a sheet that has grouped columns/rows, ther is no option to enable "Group" and "Ungroup". Does anybody know how t enable this feature to a protected sheet? Thanks in advanc -- malik64 ----------------------------------------------------------------------- malik641's Profile: http://www.excelforum.com/member.php...fo&userid=2419 View this thread: http://www.excelforum.com/showthread.php?threadid=40203 |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
If you already have the outlining 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 End With End Sub It needs to be reset each time you open the workbook. (excel doesn't remember it after closing the workbook.) If you're new to macros, you may want to read David McRitchie's intro at: http://www.mvps.org/dmcritchie/excel/getstarted.htm malik641 wrote: I'm mainly working with Excel 2000, but I also noticed this is the same for 2003. When you protect a sheet that has grouped columns/rows, there is no option to enable "Group" and "Ungroup". Does anybody know how to enable this feature to a protected sheet? Thanks in advance -- malik641 ------------------------------------------------------------------------ malik641's Profile: http://www.excelforum.com/member.php...o&userid=24190 View this thread: http://www.excelforum.com/showthread...hreadid=402039 -- Dave Peterson |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]() Dave, I have the worksheets protected on a workbook_open event, I just didn' know what the syntax was for enabling the Group featur (.EnableOutlining = True) Thanks a lot! And thanks for the link -- malik64 ----------------------------------------------------------------------- malik641's Profile: http://www.excelforum.com/member.php...fo&userid=2419 View this thread: http://www.excelforum.com/showthread.php?threadid=40203 |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
how to enable formula auditing in a protected worksheet? | Excel Worksheet Functions | |||
Enable outlining in a protected worksheet | Excel Discussion (Misc queries) | |||
How do I enable the spellchecker in a protected worksheet? | Excel Programming | |||
Enable grouping of rows in a protected sheet | Excel Discussion (Misc queries) | |||
How to enable grouping in a protected sheet | Excel Worksheet Functions |