J.T. go to format sheet hide, to unhide go to format sheet unhide, you can
also hide the sheet with code or in the VBA editor under properties so you
can't see the sheet from the format unhide menu in code use something like
this
Sub Hidesheet()
Sheets("Sheet3").Visible = xlSheetVeryHidden
End Sub
Sub Unhidesheet()
Sheets("Sheet3").Visible =xlSheetVisible
End Sub
--
Paul B
Always backup your data before trying something new
Please post any response to the newsgroups so others can benefit from it
Feedback on answers is always appreciated!
Using Excel 2002 & 2003
Want to reply to this thread or ask your own question?
You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.