Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel,microsoft.public.excel.programming,microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 8
Default grouping of cells in protected sheets

Hy!

I have grouped four rows in my excel sheet. Then I protect the sheet. When I
click on the "-"sign to hide the rows, I get the error message, that this is
not possible in protected sheets. I have written a lot of code, which is
based on protecting and unprotecting my sheets. I also need the grouping
function. Does anybody knows, how I can handle this problem? Is there a
possibilty to allow this function in protected sheets? Are there other
possibilities for the grouping function?
I thank you a lot for any help.

Regards
Christian Galbavy


  #2   Report Post  
Posted to microsoft.public.excel,microsoft.public.excel.programming,microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 1,758
Default grouping of cells in protected sheets

If you already have the outline 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

Christian Galbavy wrote:

Hy!

I have grouped four rows in my excel sheet. Then I protect the sheet. When I
click on the "-"sign to hide the rows, I get the error message, that this is
not possible in protected sheets. I have written a lot of code, which is
based on protecting and unprotecting my sheets. I also need the grouping
function. Does anybody knows, how I can handle this problem? Is there a
possibilty to allow this function in protected sheets? Are there other
possibilities for the grouping function?
I thank you a lot for any help.

Regards
Christian Galbavy


--

Dave Peterson
Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Merged cells withing Protected Sheets Ann Excel Worksheet Functions 3 May 9th 08 07:48 PM
Protected cells and grouping JimS Excel Discussion (Misc queries) 1 January 5th 06 03:28 AM
Protected sheets and cells HRMSN Excel Worksheet Functions 4 November 8th 05 11:52 PM
grouping of cells in protected sheets Christian Galbavy Excel Worksheet Functions 1 May 10th 05 12:32 AM
Grouping in protected sheets Maia Excel Discussion (Misc queries) 1 January 3rd 05 04:04 PM


All times are GMT +1. The time now is 09:46 PM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"