98.7% Of all customers recommend us, we're so confident about our results we publish all reviews and stats
View Live Stats View ReviewsForum home » Delegate support and help forum » Microsoft Excel VBA Training and help » Hiding sheets
Hiding sheets
Resolved · Low Priority · Version 2003
Ted has attended:
Excel VBA Intro Intermediate course
Hiding sheets
How do I hide a sheet so that users cannot alter data?
RE: Hiding sheets
Hi Ted
To hide a Worksheet you can use the following code:
Sheets("Totals 2008").Visible = False
To unhide it you write:
Sheets("Totals 2008").Visible = True
Hope this helps
Carlos
Training information:
Welcome. Please choose your application (eg. Excel) and then post your question. Our Microsoft Qualified trainers will then respond within 24 hours (working days). Frequently Asked Questions
Any suggestions, questions or comments? Please post in the Improve the forum thread. |
Excel tip:Move data worksheet to worksheetTo move data from one worksheet to another, highlight the data. |