Conceal worksheets

  • Thread starter Thread starter stew
  • Start date Start date
Hi,

Yes it is but you can't hide them all, you must have 1 visible sheet at least.

For Excel 2007

Format|Sheet - Hide

Mike
 
Format/ Sheet/ Hide

Doesn't Excel help tell you when you type in the words: hide worksheet?
 
IF? you don't want your users to be able to unhide withOUT a macro use a
macro to hide
sheets("yoursheetnamehere").visible=xlveryhidden
to unhide
..visible=true
 
Don Guillett said:
IF? you don't want your users to be able to unhide withOUT a macro use a
macro to hide
sheets("yoursheetnamehere").visible=xlveryhidden
to unhide
..visible=true
--
Don Guillett
Microsoft MVP Excel
SalesAid Software
(e-mail address removed)
 
I have created a procedure with the hide command from Don Guillett, however
when I run it I get run-time error '1004': Unable to set the Visible
property of the Worksheet class. How do I deal with this issue?
 
You are correct when I added another sheet then I was able to hide the sheet
I wanted to hide. Thanks
 
Back
Top