Forum Discussion
samserrano
Nov 02, 2025Copper Contributor
Hide Sheet after missusing shortcut Alt+H+W
I was working on an inventory and frequently using the shortcut mentioned above. Unfortunately, during one of those times, I must have misused it, and my sheet became hidden. Since then, I’ve tried m...
NikolinoDE
Nov 04, 2025Platinum Contributor
If “Unhide” is grayed out or doesn’t show your sheet, it’s likely very hidden, which Excel for Web cannot unhide directly.
Open the workbook in Excel Desktop
Excel Online cannot unhide sheets that are set to “very hidden” via VBA. You need to:
- Click File → Open in Desktop App.
- Go to the Developer tab → Visual Basic (press Alt+F11).
- In the VBA Project Explorer, find your workbook and locate the hidden sheet.
- Select the sheet and look at the Properties window (press F4).
- Check the Visible property:
- -1 - xlSheetVisible → sheet is visible
- 0 - xlSheetHidden → sheet can be unhidden from menu
- 2 - xlSheetVeryHidden → only VBA can unhide
- Change it to -1 - xlSheetVisible.
- Close the VBA editor and return to Excel. The sheet should now appear.
Be careful with shortcuts like Alt+H+W in desktop Excel — that’s the “Hide Sheet” shortcut. If used repeatedly, it can hide sheets unintentionally.
Excel Online does not have a direct way to access the VBA Project, so any “very hidden” sheets must be managed in the desktop version.
My answers are voluntary and without guarantee!
Hope this will help you.