Hide Sheet Q

  • Thread starter Thread starter Sean
  • Start date Start date
You could through VB Editor make the sheet xlveryhidden then put password
protection on the VBA project. This password is quite a bit harder to crack
than internal passwords.

Sub test()
Worksheets("Sheet1").Visible = xlVeryHidden
' Worksheets("Sheet1").Visible = True
End Sub


Gord Dibben MS Excel MVP
 
worked it I need Sheets.Visible = xlVeryHidden to be semi-truly hidden
(at least from format - unhide)
 
If ypou can hide it then someone else will be able to unhide it if they have
enough knowledge. The Macro:

Sub HideIt()
Sheets("Q").Visible = xlVeryHidden
End Sub

will hide Sheet Q so that it does not show in the list of hidden sheets.

to unhide it replace xlVeryHidden with TRUE then run the macro


--
HTH

Sandy
In Perth, the ancient capital of Scotland
and the crowning place of kings

(e-mail address removed)
(e-mail address removed) with @tiscali.co.uk
 
Thanks all

Is xlVeryhidden supported in Excel 2000? I use a mixture of XP and 2000
so I'd want it to work over both platforms
 

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

Expand and collapse rows 7
Block a sheet from being unhidden 2
Hide/unhide 4
Hide/Unhide Sheet Macro 6
Custom View: Keeping worksheet hidden? 1
Hide unhide sheets 2
Hide sheets using vba 3
VB Script for Copy Sheet 14

Back
Top