Excel Practice Test

โ–ถ

Hidden cells, sheets, and workbooks in Excel aren't lost โ€” they're just out of sight. Whether you accidentally clicked the wrong context menu, inherited a spreadsheet from a colleague who liked to tuck things away, or you're hunting for a Personal Macro Workbook that vanished, the unhide commands you need are tucked into menus you may never have opened. This guide walks through every scenario: rows and columns, individual worksheets, the entire hidden workbook layer, plus the stubborn xlVeryHidden sheets that ignore the regular Unhide menu altogether.

Here's the thing โ€” Excel actually offers three completely separate unhide systems, and most users only know one of them. You might be a wizard at right-clicking column headers, yet stare blankly at a "Workbook is hidden" message. Or maybe you can resurrect a worksheet in your sleep, but the Name Box trick for revealing column A leaves you cold. By the time you finish reading, you'll know all of them. We'll cover the menu paths, the keyboard accelerators, the multi-select tricks in Excel 365, and the one-line VBA workaround for sheets that refuse to budge.

Practitioners working in finance, operations, audit, and research all run into hidden data daily. A model handed off between teams often has columns hidden to protect intermediate calculations, or rows collapsed because someone wanted a cleaner print preview. Knowing how to surface those quickly โ€” without breaking formulas or accidentally deleting structure โ€” is a small skill with outsized payoff. So let's dig in.

Why Excel Hides Things in the First Place

Hiding isn't a bug โ€” it's deliberate. People hide rows and columns to declutter wide spreadsheets, conceal helper calculations, or restrict what colleagues can casually edit. Worksheets get hidden to keep raw data tabs away from a polished dashboard. Whole workbooks (yes, entire workbooks) can be hidden so they load silently in the background โ€” the classic example being the Personal Macro Workbook, which keeps your reusable macros available without cluttering your workspace.

You'll also encounter hidden content from third parties: a budget template you downloaded, a quarterly report from accounting, or a vendor file with embedded macros. Sometimes the hiding is protective; sometimes it's just clutter. Either way, knowing how to reveal what's there gives you control. And if you ever need to re-hide things after auditing them, the same menus work in reverse.

One thing to keep in mind before you start unhiding: don't just unhide everything reflexively. Hidden columns often contain intermediate formulas the sheet relies on. Unhiding them doesn't break anything (the formulas still calculate), but if you then start editing values in those cells, you can wreck downstream results. Look first, then decide.

Quick Decision Tree

Use this to figure out which method you need:

  • Missing a column or row? Select the headers on either side, right-click, choose Unhide.
  • Missing a tab at the bottom? Right-click any sheet tab and pick Unhide.
  • Excel opens but no workbook appears? View tab > Unhide Window.
  • Unhide is greyed out on a sheet tab? The sheet is marked xlVeryHidden โ€” you need VBA.
  • Can't see column A or row 1? Type A1 in the Name Box, press Enter, then Format > Hide & Unhide > Unhide Columns/Rows.

Unhiding Rows and Columns: The Most Common Case

This is what most people mean when they ask how to unhide in Excel. A column is missing โ€” you can see B, then D, but C has slipped out of view. The fix is simple, but there are three slightly different routes depending on what's hidden and where.

Standard right-click method

Click the header letter to the left of the hidden column (so B in our example), hold Shift, then click the header to the right (D). Both columns highlight blue. Now right-click anywhere in that selection and choose Unhide. Column C reappears. The same procedure works for rows โ€” select the row numbers above and below the gap, right-click, Unhide.

Home tab ribbon

Some keyboards make right-clicking awkward, or you might prefer the discoverable menu route. Select the rows or columns around the hidden ones, then go to Home > Format (in the Cells group) > Hide & Unhide > Unhide Columns (or Rows). Same result, slower path, but it's worth knowing for training other people.

The Name Box trick for column A or row 1

What if the hidden column is column A โ€” the very first one? You can't select B and "something to the left of A," because nothing exists there. Here's the workaround: click the Name Box (the little reference box in the top-left, beside the formula bar). Type A1 and press Enter. The invisible cell A1 is now active. Then go to Home > Format > Hide & Unhide > Unhide Columns. Column A pops back into view. Same trick works for row 1 with Unhide Rows.

Three Scopes of Hiding in Excel

๐Ÿ”ด Rows & Columns

Hides cell ranges within a single sheet. Unhide via right-click on adjacent headers or Home > Format > Hide & Unhide. Most common scenario, easiest to fix.

๐ŸŸ  Worksheets (Tabs)

Hides entire sheet tabs at the bottom. Unhide via right-click on any visible tab > Unhide. In Excel 365, you can select multiple sheets in the dialog and unhide them at once.

๐ŸŸก Workbooks (Windows)

Hides entire Excel windows. Use View tab > Unhide Window. Personal Macro Workbook is the classic example โ€” it loads on startup but stays hidden.

๐ŸŸข Very Hidden Sheets

Set via VBA: Worksheet.Visible = xlVeryHidden. The standard Unhide dialog won't show these. Only VBA or Visual Basic Editor can reveal them.

Unhiding Worksheets: Bringing Back Hidden Tabs

Open a workbook, glance at the tab strip along the bottom, and something feels off. The Summary sheet should be there, but it's gone. Or maybe a colleague mentioned a "Raw Data" tab you've never seen. Chances are someone hid those sheets. Bringing them back takes two clicks.

The right-click method (still the fastest)

Right-click on any visible sheet tab. In the context menu, choose Unhide. A dialog box appears listing every hidden sheet in the workbook. Pick the one you want and click OK. Done.

If Unhide is greyed out in that menu, it means there are no normally-hidden sheets to reveal. But that doesn't mean none exist โ€” there might be very hidden sheets lurking. We'll get to those.

Unhiding multiple sheets at once (Excel 365 only)

Older versions of Excel forced you to unhide one sheet at a time from the dialog, which was tedious if someone had hidden a dozen. Excel 365 fixed this: in the Unhide dialog, hold Ctrl and click multiple sheets to select them. Click OK and they all reappear. If you're on Excel 2019 or earlier and need to mass-unhide, you'll need a tiny VBA loop (covered below).

The Home tab path

Like rows and columns, sheets can also be unhidden via the ribbon: Home > Format > Hide & Unhide > Unhide Sheet. Identical result. Some keyboard-heavy users prefer this because it's reachable via Alt + H + O + U + H.

๐Ÿ“‹ Rows/Columns

Right-click: Select adjacent row numbers or column letters, right-click, choose Unhide.

Ribbon: Home > Format > Hide & Unhide > Unhide Rows or Unhide Columns.

Edge case: For column A or row 1, type A1 in the Name Box first, then use the ribbon path.

Shortcut: Ctrl+Shift+9 unhides selected rows. Ctrl+Shift+0 unhides columns (may be blocked by your OS regional keyboard settings).

๐Ÿ“‹ Worksheets

Right-click tab: Right-click any visible sheet tab, choose Unhide, pick the sheet from the list.

Ribbon: Home > Format > Hide & Unhide > Unhide Sheet.

Multi-select: Excel 365 lets you Ctrl-click multiple sheets in the Unhide dialog.

If greyed out: No standard hidden sheets exist, but very hidden sheets might. Open the VBA editor with Alt + F11 to check.

๐Ÿ“‹ Workbooks

View tab path: View > Unhide (in the Window group). A dialog lists all currently hidden workbook windows.

Typical use: Bringing back the Personal Macro Workbook (PERSONAL.XLSB) after it's been hidden via View > Hide.

If Unhide is greyed: No hidden workbooks are currently open. The file might not even be loaded โ€” open it manually first.

๐Ÿ“‹ Very Hidden

Open VBA editor: Press Alt + F11. In the Project Explorer, find the sheet under VBAProject > Microsoft Excel Objects.

Properties pane: Press F4 to open Properties. Locate the Visible property and change xlSheetVeryHidden (-1) to xlSheetVisible (-1... wait, that's the same number โ€” actually xlSheetVisible is -1, xlSheetHidden is 0, xlSheetVeryHidden is 2). Set it to -1.

Quicker VBA: In the Immediate window (Ctrl + G), type Sheets("SheetName").Visible = -1 and press Enter.

Unhiding an Entire Workbook (the View Tab Method)

This one trips everyone up the first time they see it. You double-click an Excel file, the app launches, you see the ribbon, you see your toolbars โ€” but no spreadsheet. Where did it go? Almost certainly the workbook window itself is hidden.

To check, go to the View tab in the ribbon. In the Window group, click Unhide. If Excel finds a hidden workbook in your current session, a dialog appears listing it. Select the workbook and click OK. The window reappears, your data visible again.

The most common situation where this happens involves the Personal Macro Workbook. When you record your first macro and tell Excel to save it to "Personal Macro Workbook," Excel creates PERSONAL.XLSB in your XLSTART folder. From then on, that file opens automatically every time Excel launches โ€” but it's hidden by default, so it doesn't clutter your view. If you ever need to edit the macros directly, you have to View > Unhide first.

There's also a less common scenario: someone manually hid a workbook via View > Hide and then saved it, so it stays hidden across sessions. You'll need to reopen the file (it should still appear in your recent files) and immediately go View > Unhide.

What if Unhide is greyed out under View?

Two possibilities. First, no workbook is currently hidden โ€” the menu simply has nothing to act on. Second, the file you're looking for isn't open yet. Excel can only unhide windows it has in memory. Open the file from File > Open or your recent list, and the Unhide command should activate.

Test Your Excel Skills

Keyboard Shortcuts and Speed Tips

If you live in Excel all day, the right-click menu starts to feel slow. Memorise a handful of shortcuts and you'll save real time.

Row and column shortcuts

Ribbon accelerator path

Hit Alt once to reveal ribbon shortcuts. Then H for Home, O for Format, U for Hide & Unhide, then R, C, or S for Unhide Rows / Columns / Sheet. The full sequence is Alt + H + O + U + R (for rows) or Alt + H + O + U + S (for sheets). It takes a couple of seconds, but it's hands-on-keyboard the whole way.

VBA Immediate window for very hidden sheets

For sheets stuck on xlVeryHidden, the fastest fix is the VBA Immediate window. Press Alt + F11, then Ctrl + G. Type:

Sheets("YourSheetName").Visible = True

and press Enter. The sheet becomes visible immediately, no dialog needed. To unhide every sheet in the workbook at once, paste this loop into a code module and run it:

For Each ws In ThisWorkbook.Worksheets: ws.Visible = xlSheetVisible: Next ws

Save a copy of the workbook first โ€” unhiding is reversible, but you may also accidentally edit revealed content.
Note the sheet tab order before unhiding; rearranging while exploring can confuse downstream formulas.
Check the formula bar for references to hidden cells (look for !A1 patterns) so you understand dependencies.
If unhiding rows or columns breaks visible totals, the hidden range probably contained SUM helpers โ€” investigate before deleting anything.
For very hidden sheets, take a screenshot of the Project Explorer first so you can restore the original Visible setting if needed.
After unhiding sheets, run a quick Find & Replace audit for #REF! errors โ€” sometimes hidden sheets were hidden because they had broken links.
If you unhide a Personal Macro Workbook, re-hide it via View > Hide before closing Excel so it stays out of sight next session.

Common Pitfalls and How to Avoid Them

Unhiding usually works on the first try. But sometimes nothing happens, or the result looks wrong, and the cause isn't obvious. Here are the snags people hit most often.

"Unhide" is greyed out

For rows or columns: your selection probably doesn't span the hidden range. Click the row or column letter directly to the left and right of the gap (not just nearby cells), then try again. For sheet tabs: either no hidden sheets exist, or they're all very hidden โ€” open the VBA editor to confirm.

You unhide a column but nothing appears

The column might have its width set to a value just above zero, like 0.08. Excel considers that "visible," but you'd never see it. Select the column header, right-click, Column Width, and set it to something usable like 10 or 12.

Rows look unhidden but data is still missing

An active filter can hide rows independently of the hide/unhide mechanism. Look for the funnel icon on your column headers. Clear the filter via Data > Clear, or toggle the Filter button off entirely, and the rows reappear.

Sheet protection blocks unhide

If the workbook is protected with "Structure" enabled, you can't add, remove, hide, or unhide sheets. The right-click Unhide option is greyed out as a result. Go to Review > Unprotect Workbook, enter the password if there is one, and the menu unlocks.

The hidden window doesn't show under View > Unhide

You're looking at the wrong Excel instance. If you have multiple Excel windows open as separate processes (rare, but possible with older versions or specific compatibility modes), each has its own Unhide list. Close other instances or check the Windows Task Manager for stray excel.exe processes.

Pros

  • โ€”
  • โ€”
  • โ€”
  • โ€”
  • โ€”

Cons

  • โ€”
  • โ€”
  • โ€”
  • โ€”
  • โ€”

When Unhiding Is Part of a Bigger Cleanup

Sometimes you're not just unhiding one column โ€” you're inheriting a sprawling workbook from a former colleague, and you want to understand its full structure before touching anything. In that case, treat unhiding as a discovery phase, not a fix.

Start by listing every sheet. In the VBA Immediate window, type For Each s In Sheets: Debug.Print s.Name, s.Visible: Next s and press Enter. You'll get a printout of every sheet name with its current visibility status. Now you know exactly what's hidden, what's very hidden, and what's already visible โ€” no guessing.

Next, scan for hidden columns and rows in the active sheet. A quick visual check: select all (Ctrl + A), then Home > Format > Row Height. If the dialog shows a value, all rows are uniform. If it's blank, heights vary โ€” meaning some rows are likely hidden or have custom sizes. Same idea for Column Width. To force everything visible, select all, then Format > Hide & Unhide > Unhide Rows, then again Unhide Columns.

Once everything is exposed, walk the model from inputs to outputs. Look at Formula Auditing > Trace Dependents on key cells. Now you can see why columns were hidden in the first place โ€” usually intermediate calculations that the author didn't want users editing โ€” and you can decide whether to leave them visible, re-hide them, or delete them entirely if they're truly redundant.

Documenting what you find

If you're going to maintain this workbook long-term, add a "ReadMe" sheet at the front. Note which sheets were originally hidden and why, which columns/rows are intermediate calculations, and any VBA modules you discovered. Future-you will thank present-you. This is especially valuable for compliance-heavy workplaces where audit trails matter.

Take an Excel Quiz

Putting It All Together

Three menus, one keyboard shortcut combo, and one VBA escape hatch โ€” that's everything you need to unhide anything in Excel. Most days you'll only use the right-click route for columns or sheet tabs. But the moment a workbook opens with no visible spreadsheet, or a colleague hands you a file with a missing tab that doesn't appear in the Unhide dialog, you'll know exactly where to go.

The bigger lesson, honestly, is that Excel rewards curiosity about its plumbing. Hiding is everywhere โ€” in column headers, sheet tabs, window frames, and the deep VBA visibility property. Once you've poked into all four scopes, the spreadsheet feels less like a fixed grid and more like a layered document where you control what's visible at every level. That's a small mindset shift, but it pays off every time you crack open a file someone else built.

Keep this guide bookmarked. The next time something disappears, you'll know whether to right-click, hit the View tab, or jump straight to Alt + F11 โ€” and you'll get on with your day instead of wondering where your data went.

Excel Questions and Answers

How do you unhide in Excel quickly?

Select the rows or columns on either side of the hidden range, right-click on the highlighted area, and choose Unhide. For sheets, right-click any visible sheet tab and pick Unhide from the menu, then select the sheet to reveal.

How to unhide a workbook in Excel?

Go to the View tab on the ribbon, find the Window group, and click Unhide. A dialog lists every hidden workbook currently open in your Excel session. Pick the one you want and click OK to bring its window back into view.

How to unhide all in Excel at once?

For rows and columns in a single sheet, press Ctrl + A to select everything, then go to Home > Format > Hide & Unhide and run Unhide Rows followed by Unhide Columns. For sheets, Excel 365 lets you Ctrl-click multiple sheets in the Unhide dialog, or use a VBA loop: For Each ws In ThisWorkbook.Worksheets: ws.Visible = xlSheetVisible: Next ws.

How to unhide worksheets in Excel when the option is greyed out?

If the Unhide command is greyed out, the sheets are likely set to xlSheetVeryHidden, which the standard dialog ignores. Press Alt + F11 to open the VBA editor, find the sheet in Project Explorer, press F4 for Properties, and change Visible from xlSheetVeryHidden (2) to xlSheetVisible (-1).

How do you unhide column A or row 1 in Excel?

Type A1 (or any reference in row 1 / column A) into the Name Box to the left of the formula bar and press Enter. With that hidden cell now active, go to Home > Format > Hide & Unhide and select Unhide Columns or Unhide Rows. Column A or row 1 will reappear.

What is the keyboard shortcut to unhide rows and columns?

Ctrl + Shift + 9 unhides selected rows in Excel. Ctrl + Shift + 0 is the historical shortcut for unhiding columns, but Windows regional settings often intercept it for language switching. If the column shortcut doesn't work, use Home > Format > Hide & Unhide > Unhide Columns instead.

Why is the Personal Macro Workbook hidden, and how do I unhide it?

Excel hides the Personal Macro Workbook (PERSONAL.XLSB) by default so it loads silently on startup without cluttering your workspace. To edit it directly, open Excel, go to View > Unhide, pick PERSONAL from the dialog, and click OK. Re-hide it via View > Hide before closing to keep the default behaviour.

What is xlVeryHidden in Excel?

xlVeryHidden (numeric value 2) is a VBA property that hides a worksheet so completely that even Excel's right-click > Unhide dialog won't show it. It's used in financial models and templates to lock sheets away from casual users. Only the VBA editor or a macro can flip it back to xlSheetVisible (-1).
โ–ถ Start Quiz