VBA: Hide a worksheet
It’s real tough for a user to manipulate a worksheet when they can’t see it…try this.
1. Put this in a module
Sub SheetHide() Sheet1.Visible = xlSheetVeryHidden End Sub
Leave a comment
| Trackback
It’s real tough for a user to manipulate a worksheet when they can’t see it…try this.
1. Put this in a module
Sub SheetHide() Sheet1.Visible = xlSheetVeryHidden End Sub