How to unhide 'Very Hidden' Worksheet
I was messing around in the sheet settings and somehow managed to make a sheet 'very hidden', but I cannot seem to make it visible again. How can I make it visible?
I am using Excel 2010.
04 Answers
One option is to do it with VBA
Try out the below:
Sub UnHide()
Dim ws As Worksheet
For Each ws In Sheets ws.Visible = True
Next
End SubThis will show up ALL sheets that are hidden, or very hidden
8You do it like this:
- Open VBA editor (Alt+F11)
- Open the VBAProject corresponding to your file.
- Open the "Microsoft Excel-objects" folder
- Select the Sheet you've hidden.
- Go to the properties (press F4)
- Change the property "Visible" to xlSheetVisible instead of xlSheetVeryHidden
In VBA editor, go to the sheet properties and change the below property
5To keep them hidden, but visible in the options menu (UnHide..), use the same code but with this..
Sub StillHide()
Dim ws As Worksheet
For Each ws In Sheets ws.Visible = xlSheetHidden <-- change from Visible to this.
Next
End SubThat way the tabs are not all of a suddenly showing to the user. They are still "hidden".