Home | Contact Us | FAQ | Search & Site Map | Link to Us
Sign In | Join | Other 45 Sites in Network
Home
DiscussionsAccessExcelInfoPathOutlookPowerPointPublisherWord
DirectoryUser Groups
Related Topics
Outlook ExpressInternet ExplorerWindowsMS Server ProductsMore Topics ...

MS Office Forum / Excel / New Users / January 2007

Tip: Looking for answers? Try searching our database.

Hide Sheet Q

Thread view: 
Enable EMail Alerts  Start New Thread
Thread rating: 
Sean - 15 Jan 2007 22:22 GMT
How do I remove the ability of a User to Unhide a hidden Sheet?

Thanks
Gord Dibben - 15 Jan 2007 22:40 GMT
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

>How do I remove the ability of a User to Unhide a hidden Sheet?
>
>Thanks
Sean - 15 Jan 2007 22:41 GMT
worked it I need Sheets.Visible = xlVeryHidden to be semi-truly hidden
(at least from format - unhide)

> How do I remove the ability of a User to Unhide a hidden Sheet?
>
> Thanks
Sandy Mann - 15 Jan 2007 22:42 GMT
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

Signature

HTH

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

sandymann2@mailinator.com
Replace@mailinator.com with @tiscali.co.uk

> How do I remove the ability of a User to Unhide a hidden Sheet?
>
> Thanks
Sean - 15 Jan 2007 23:01 GMT
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

> If ypou can hide it then someone else will be able to unhide it if they have
> enough knowledge.  The Macro:
[quoted text clipped - 20 lines]
> >
> > Thanks

Rate this thread:






 
Sign In
Join
My Latest Posts
My Monitored Threads
My Blog
My Photo Gallery
My Profile
My Homepage

Start New Thread
Enable EMail Alerts
Rate this Thread



©2008 Advenet LLC   Privacy Policy - Terms of Use
This website includes both content owned or controlled by Advenet as well as content owned or controlled by third parties.