ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Discussion (Misc queries) (https://www.excelbanter.com/excel-discussion-misc-queries/)
-   -   Protecting locked cells (https://www.excelbanter.com/excel-discussion-misc-queries/70242-protecting-locked-cells.html)

Zakynthos

Protecting locked cells
 
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.

Sheila D

Protecting locked cells
 
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

Protecting locked cells
 
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

Dave Peterson

Protecting locked cells
 
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


All times are GMT +1. The time now is 05:31 PM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
ExcelBanter.com