Sunday, May 13, 2007

Hiding Sheets


To hide your worksheet from users you can use the following code.

Sub HideSheet()
Sheet1.Visible = xlSheetVeryHidden
End Sub

If you hide your sheets this way, users will not be able to unhide them using the menus. Only using VB codes will be able to display the sheets again.

No comments:

Post a Comment