Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Use Group and Outline in Excel with Protection On 2

Status
Not open for further replies.

ricolame

IS-IT--Management
Nov 9, 2005
82
CN
Hey guys,

I need help to use group & outline when my protection is turned on. Is there a way to do that?
 
You can do it with a macro. Two ways

a. auto-open. macro applies when workbook is opepned. Where you have to define the worksheet you are protecting and the password.

Option Explicit
Sub auto_open()
With Worksheets("sheet1")
.Protect Password:="xlhelp", userinterfaceonly:=True
.EnableOutlining = True
End With
End Sub


b. running a macro when you are finished working with a particular worksheet

Sub ProtectSheet()

ActiveSheet.EnableOutlining = True
ActiveSheet.Protect contents:=True, userInterfaceOnly:=True

End Sub









Member AAA - Abolish Abused Abbreviations
 
hi,

thanks it works! But, in order to activate it, i've to run the macro personally. Is there a way to have it auto run the moment the worksheet is opened?

Thanks
 
Option a. does that.

Member AAA - Abolish Abused Abbreviations
 
Hi,

Tks. I took option A code. Placed it in the window.

However it would not work unless I activate the macro personally, and not activated automatically when the excel is opened.

Is it something that i had done wrong ? Tks again!

With regards,
 
hi xlhelp,

hope you are still on the forum... i couldnt get it working as intended .. the macro just doesnt seem to work when it is opened automatically..

Is there anything that I might had done wrongly?
 
Where did you put that auto open code? Put it in the 'ThisWorkbook Module', not in the sheet module.

Regards
Ken.............

----------------------------------------------------------------------------
[peace]It's easier to beg forgiveness than ask permission[2thumbsup]
----------------------------------------------------------------------------
 
Hi,

Ken, if the macro is called Auto_Open, it should be in a regular codemodule. In the Thisworkbook module is will be the Workbook_Open event.

Ricolame, it might have to do with your settings.

1. On opening the workbook, macro's should be enabled.
2. Security should be set to Medium or Low (Tools -> Macro -> Security)
3. VBProjects should be Trusted Sources (same path, tab 'Trusted Sources'. The bottom checkbox should be tagged.)

Hope this helps.

Cheers,

Roel
 
LOL - my bad, skimming through, saw the _open bit and assumed it was Workbook_Open. Cheers for the catch.

Regards
Ken..........

----------------------------------------------------------------------------
[peace]It's easier to beg forgiveness than ask permission[2thumbsup]
----------------------------------------------------------------------------
 
They are actually the same thing, the auto_open is an earlier version and is still supported, although I wouldn't bank on it in the future (as the way MS changes their tune quite a bit). I would recommend using the workbook_open event instead.

-----------
Regards,
Zack Barresse

Simplicity is the ultimate sophistication. What is a Microsoft MVP?
- Leonardo da Vinci
 
Well not quite the same thing :) Workbook_Open is an event macro whereas Auto_open isn't. And I seem to remember there being differences in that Auto_open could be prevented from triggering by holding down SHIFT whilst Workbook_open couldn't, or at least in the earlier versions of Excel. Think there were a couple of other nuances as well but for the life of me can't remember what they were.

Regards
Ken............

----------------------------------------------------------------------------
[peace]It's easier to beg forgiveness than ask permission[2thumbsup]
----------------------------------------------------------------------------
 
Another difference is that if the file is opened through VBA the Workbook_Open event will fire automatically and the Auto_Open macro needs to be called through the RunAutoMacros command.

Cheers,

Roel
 
Maybe I should have put "for all intensive purposes.." ;-)

-----------
Regards,
Zack Barresse

Simplicity is the ultimate sophistication. What is a Microsoft MVP?
- Leonardo da Vinci
 
LOL - The firing when opened by VBA nuance was the other one I couldn't remember :)

----------------------------------------------------------------------------
[peace]It's easier to beg forgiveness than ask permission[2thumbsup]
----------------------------------------------------------------------------
 
Is there any way of getting this working without the use of VBA?

I have a workbook that I cannot use VBA as it will be opened by various people with limited abilities or with security set to high which disables the VBA code automatically.

When selecting show detail, the message is:
"You cannot use this command on a protected sheet. To unprotect the sheet...."


Thanks,

Aubs
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top