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
 

Ask a Question

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.

Ask a Question

Similar Threads

lost a column,A, In a worhsheet 1
Hidden Worksheets 6
Saving a work book as values and format only 3
hyperlink 6
Open a program from a Hyperlink? 3
Help with indirect 5
HYPERLINK 2
Another Hyperlink Question 4

Back
Top