In Excel: right-click any sheet tab and choose Unhide, then pick the sheet from the list — in Microsoft 365 you can Ctrl-click several at once.
On this page7
Right-click any worksheet tab and choose Unhide.
Pick the sheet you want; in Microsoft 365 Ctrl-click to select several, then press OK.
If Unhide is greyed out, check Review ▸ Protect Workbook — a protected structure blocks it.
If the sheet is not in the list, press Alt+F11 to open the VBA editor and find it in the Project pane.
With the sheet selected, set Visible to -1 - xlSheetVisible in the Properties window (press F4 if it is not showing).
To unhide everything in one go, open the Immediate window with Ctrl+G and run: For Each s In Sheets: s.Visible = -1: Next
What this does
Excel has two levels of hiding and only one of them is in that dialog. A normally hidden sheet is what right-click ▸ Hide produces and right-click ▸ Unhide reverses. A *very* hidden sheet has its Visible property set to xlSheetVeryHidden in the VBA editor, and it does not appear in the Unhide list at all — the only ways back are the VBA Properties window (Alt+F11, select the sheet, set Visible to -1 xlSheetVisible) or a one-line macro. If Unhide is greyed out entirely, either no sheet is hidden or the workbook structure is protected, which is Review ▸ Protect Workbook. Before you run it on a workbook other people depend on, try it on a copy or a few rows first. Undo only reaches back through the current session, so a quick trial run is the cheapest way to see exactly what will change before the file is saved and shared. For “unhide sheets in excel”, the reliable version is a short checking loop, not just the first command that appears to work. Run it on a deliberately small range first, watch how the affected sheet change, and only then apply the same setup to the full sheet. When this is a ribbon command, the selection matters more than the button: confirm the range, apply the command, then spot-check the output before saving. That is what makes a layout choice that keeps the sheet readable and sortable useful in real work: repeatable, auditable, and not dependent on memory or luck.
A worked example
Right-click any tab ▸ Unhide shows Sheet3 and Config; select one and press OK. If a sheet you know exists is missing from that list, press Alt+F11, click the sheet in the Project pane, and in the Properties window set Visible from 2 - xlSheetVeryHidden to -1 - xlSheetVisible. To reveal everything at once, run this in the VBA Immediate window: For Each s In Sheets: s.Visible = -1: Next Inherited workbooks are full of hidden config and lookup sheets, and knowing the difference between hidden and very hidden is what turns "the sheet is gone" into a ten-second fix. When the result is not what you expected, undo straight away rather than repairing it by hand — undo restores the sheet exactly, while manual fixes tend to leave small inconsistencies behind that surface later.
In Google Sheets
This is a command rather than a formula, so there is no syntax to carry over. Google Sheets arranges its commands in menus across the top instead of a ribbon, names some of them differently and does not have every Excel command — look for the equivalent in the Sheets menus or its help before assuming the steps match. The aim was to get you unstuck fast and leave you a little more capable than a copy-paste would. The answer is at the top and the detail above shows why it holds — so the next time a colleague asks, you can answer without reaching for search. Here is the takeaway for “unhide sheets in excel”: follow the steps at the top, check the result on the sheet itself, and keep undo in mind while you experiment. Done once deliberately, it becomes something you do from memory in Excel rather than something you search for again.
Common mistakes
- Concluding the sheet was deleted when it is very hidden and simply not listed in the Unhide dialog.
- Trying to unhide while the workbook structure is protected, which greys the command out with no explanation.
- Confusing hidden sheets with hidden rows or columns, which are unhidden from Home ▸ Format ▸ Hide & Unhide.
- Treating a hidden sheet as security — the data is fully readable to anyone who unhides it, or who opens the file as a zip.
- Unhiding one sheet at a time in older versions when a two-line macro does the lot.
Frequently asked questions
How do I unhide a sheet in Excel?
Right-click any sheet tab and choose Unhide, then select the sheet. In Microsoft 365 you can Ctrl-click to unhide several at once.
Why is my sheet not in the Unhide list?
It is "very hidden" — set that way in VBA. Press Alt+F11, select the sheet in the Project pane, and change Visible to -1 - xlSheetVisible in the Properties window.
Why is the Unhide option greyed out?
Either no sheet is hidden, or the workbook structure is protected. Check Review ▸ Protect Workbook and unprotect it first.
How do I unhide all sheets at once?
Microsoft 365 lets you Ctrl-click multiple entries in the Unhide dialog. Otherwise open the VBA Immediate window (Alt+F11, Ctrl+G) and run: For Each s In Sheets: s.Visible = -1: Next
Other ways people ask this
People reach this page typing “unhide sheets in excel”, “how to unhide excel spreadsheet”, “unhide spreadsheet excel” and “how do you unhide an excel spreadsheet”, among other phrasings; whichever wording you used, the fix above is the one you want.
Why do people search for this in so many different ways?
Because the same task has many names. “unhide sheets in excel”, “how to unhide excel spreadsheet”, “unhide spreadsheet excel” all point at the one operation explained on this page, which is why they all lead here.