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 TugboatEng on being selected by the Eng-Tips community for having the most helpful posts in the forums last week. Way to Go!

Using Group/Outline on a Protected Sheet

Status
Not open for further replies.

melone

Electrical
Joined
Aug 10, 2001
Messages
1,233
Location
US
Using Excel 2003, how can you use the Group and Outline functionality on a protected sheet? I have "hidden" some information using Group and Outline, but have also protected the sheet to protect some formulae. When protecting the sheet, I have allowed the users to:

- Select locked cells
- Select unlocked cells
- Format cells
- Format columns
- Format rows
- Use AutoFilter

Actually, I really don't want the users to be formating anything. They should only go in, modify specific cells, Hide/Unhide predetermined columns, and be able to select/copy all the cells values (not the formulae).

Thanks in advance!
 
For this question, start from:
Code:
Sheets(1).Name = IIf(IsEmpty(Range("A1").Value), "NoName2", Range("A1").Value)

You can loop through the Sheets collection using Lbound/Ubound or using the Count property, or using the For Each construct

Good Luck
johnwm
________________________________________________________
To get the best from these forums read faq731-376 before posting

Steam Engine enthusiasts:
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top