Excel Sheet Unhide

There are two ways to “excel sheet unhide”: the quick way you copy and the durable way you understand. This page gives you both. The exact Excel answer is above; below, we build the small mental model that makes the fix stick, so the next variation of the same problem solves itself.

Exact answer

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
Annotated stepsExcel
1

Right-click any worksheet tab and choose Unhide.

2

Pick the sheet you want; in Microsoft 365 Ctrl-click to select several, then press OK.

3

If Unhide is greyed out, check Review ▸ Protect Workbook — a protected structure blocks it.

4

If the sheet is not in the list, press Alt+F11 to open the VBA editor and find it in the Project pane.

5

With the sheet selected, set Visible to -1 - xlSheetVisible in the Properties window (press F4 if it is not showing).

6

To unhide everything in one go, open the Immediate window with Ctrl+G and run: For Each s In Sheets: s.Visible = -1: Next

Ctrl+CthenCtrl+Shift+V+Cthen+Ctrl+VPaste values · WindowsMac

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 “excel sheet unhide”, 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. If this is something you do often, add the command to the Quick Access Toolbar (right-click it on the ribbon and choose Add to Quick Access Toolbar) or learn its shortcut, so next time it is one click instead of a hunt through the menus.

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. The short version of “excel sheet unhide”: the answer is at the top of this page, and the sections above explain why each step matters, so a variation of the problem does not stump you. Try it once on a copy of a real file and the steps stick far better than re-reading them.

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 “how to unhide a sheet in excel”, “how to unhide in excel sheet”, “how to unhide the excel sheet” and “unhide excel sheet”, 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. “how to unhide a sheet in excel”, “how to unhide in excel sheet”, “how to unhide the excel sheet” all point at the one operation explained on this page, which is why they all lead here.