How to Check Hidden Sheets in Excel

There are two ways to “check hidden sheets in excel”: 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. Most people learn this as a sequence of clicks and forget it by next week; learning it as a pattern instead is what lets you apply it to the next, slightly different version of the problem without starting from scratch. That is the difference this page is trying to make. For “check hidden 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. 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. Nothing on this page is behind a login or a download: the exact answer is at the top, and the detail below it is there for when you need it. That is the whole promise here — the answer first, and just enough context to make it stick. Here is the takeaway for “check hidden 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