Forum 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?
For upcoming training course dates see: Pricing & availability
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
|
