Hiding a sheet

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hello

I once read somewhere you can 'double' hide as sheet so that it can't be seen within a workbook. How do you do this

Thanks in advance
James
 
Hi James,

You set it's visible property to xlVeryHidden, like so

ACtiveSheet.Visible = xlVeryHidden

It is re-instated from VBA with = True as normal, but it can't be unhidden
in Excel.

--

HTH

Bob Phillips
... looking out across Poole Harbour to the Purbecks
(remove nothere from the email address if mailing direct)

James L said:
Hello,

I once read somewhere you can 'double' hide as sheet so that it can't be
seen within a workbook. How do you do this?
 

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

Back
Top