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