Forum Discussion
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 multiple methods to unhide it, but none have worked. I would really appreciate your assistance in resolving this issue.
3 Replies
- m_tarlerBronze Contributor
you probably clicked Alt+W+H and need to click 'unhide' on the View tab or use Alt+W+U
Try this:
1: Try the standard unhide
- Right‑click on any visible sheet tab at the bottom.
- Select Unhide….
- If your missing sheet is listed, select it and click OK.
If it’s not listed, that means it’s “Very Hidden.”
2: Use the VBA editor to unhide “Very Hidden” sheets
- Press Alt + F11 to open the VBA editor.
- In the left pane (Project Explorer), expand your workbook.
- Select the sheet you can’t see.
- In the Properties window (press F4 if it’s not visible), look for the property Visible.
- Change it from xlSheetVeryHidden to xlSheetVisible.
- Close the VBA editor and return to Excel—the sheet should now be visible.
3: Check workbook protection
If the sheet still won’t unhide:
- Go to Review → Protect Workbook.
- If protection is enabled, you may need the password to unprotect before unhiding sheets.
- NikolinoDEPlatinum 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.