Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 7
Default problem using protected sheets

So this should be possible in Excel 2003?
Can you tell me how to achieve this?

Regards
Thijs van Bon

"Frank Kabel" schreef in bericht
...
Hi
AFAIK not possible in Excel 97

--
Regards
Frank Kabel
Frankfurt, Germany


ties wrote:
I have the following problem, which I'm not sure is possible to
solve/work around:

In my sheet I grouped several columns and rows. After protecting the
worksheet it's not possible anymore to hide or show the groups, which
I really need to be able to do.

I'm using Excel 97.

Does anyone know a solution or work around?

Thanks in advance
Thijs van Bon




  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 7
Default problem using protected sheets

I have the following problem, which I'm not sure is possible to solve/work
around:

In my sheet I grouped several columns and rows. After protecting the
worksheet it's not possible anymore to hide or show the groups, which I
really need to be able to do.

I'm using Excel 97.

Does anyone know a solution or work around?

Thanks in advance
Thijs van Bon


  #3   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 3,885
Default problem using protected sheets

Hi
AFAIK not possible in Excel 97

--
Regards
Frank Kabel
Frankfurt, Germany


ties wrote:
I have the following problem, which I'm not sure is possible to
solve/work around:

In my sheet I grouped several columns and rows. After protecting the
worksheet it's not possible anymore to hide or show the groups, which
I really need to be able to do.

I'm using Excel 97.

Does anyone know a solution or work around?

Thanks in advance
Thijs van Bon


  #4   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 2,824
Default problem using 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.)

ties wrote:

I have the following problem, which I'm not sure is possible to solve/work
around:

In my sheet I grouped several columns and rows. After protecting the
worksheet it's not possible anymore to hide or show the groups, which I
really need to be able to do.

I'm using Excel 97.

Does anyone know a solution or work around?

Thanks in advance
Thijs van Bon


--

Dave Peterson

  #5   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 27,285
Default problem using protected sheets

It is possible in Excel 97 - see Dave Peterson's answer.

--
Regards,
Tom Ogilvy

"ties" wrote in message
...
So this should be possible in Excel 2003?
Can you tell me how to achieve this?

Regards
Thijs van Bon

"Frank Kabel" schreef in bericht
...
Hi
AFAIK not possible in Excel 97

--
Regards
Frank Kabel
Frankfurt, Germany


ties wrote:
I have the following problem, which I'm not sure is possible to
solve/work around:

In my sheet I grouped several columns and rows. After protecting the
worksheet it's not possible anymore to hide or show the groups, which
I really need to be able to do.

I'm using Excel 97.

Does anyone know a solution or work around?

Thanks in advance
Thijs van Bon








  #6   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 7
Default problem using protected sheets

Hi Dave,

Thanks a lot. I tried it and it seems to work flawlessly. This will save me
a lot of work!

Regards
Thijs


"Dave Peterson" schreef in bericht
...
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.)

ties wrote:

I have the following problem, which I'm not sure is possible to

solve/work
around:

In my sheet I grouped several columns and rows. After protecting the
worksheet it's not possible anymore to hide or show the groups, which I
really need to be able to do.

I'm using Excel 97.

Does anyone know a solution or work around?

Thanks in advance
Thijs van Bon


--

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
Protected Sheets Ann Excel Worksheet Functions 2 March 30th 10 11:09 PM
protected sheets Jock Excel Worksheet Functions 3 December 4th 07 12:51 PM
Protected Sheets Jolo Excel Discussion (Misc queries) 3 December 28th 05 02:21 AM
Protected sheets HRMSN Excel Worksheet Functions 1 November 8th 05 10:19 PM
Protected sheets steve Excel Worksheet Functions 2 November 14th 04 05:53 PM


All times are GMT +1. The time now is 07:45 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"