Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
I would like to protect locked cells in a worksheet but at the same time
allow the user to group and ungroup columns. Can this be done? Many thanks. |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Not quite sure what you mean by group and ungroup columns?
"Zakynthos" wrote: I would like to protect locked cells in a worksheet but at the same time allow the user to group and ungroup columns. Can this be done? Many thanks. |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
If you already have the outline/subtotals 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 .EnableAutoFilter = 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 Zakynthos wrote: I would like to protect locked cells in a worksheet but at the same time allow the user to group and ungroup columns. Can this be done? Many thanks. -- Dave Peterson |
#4
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
If you select a few cells (say A:C), then do Data|Group and outline|group,
you'll see that you get outlining symbols across the top. It can be useful if you want to hide/show columns (or rows) quickly. Sheila D wrote: Not quite sure what you mean by group and ungroup columns? "Zakynthos" wrote: I would like to protect locked cells in a worksheet but at the same time allow the user to group and ungroup columns. Can this be done? Many thanks. -- Dave Peterson |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Shading Locked Cells | Excel Discussion (Misc queries) | |||
locked cells | Excel Discussion (Misc queries) | |||
Locked spreadsheet, move cursor only to unlocked cells? | Excel Worksheet Functions | |||
Protecting Workbook | Excel Discussion (Misc queries) | |||
Locked cells | Excel Worksheet Functions |