Unhide Sheets in Excel

Sometimes worksheets are hidden in Excel. You can easily make them visible again.

Note: An Excel workbook must always have at least one visible sheet.


Unhide a Worksheet

Step 1: Right-click a sheet tab

At the bottom of Excel, right-click any visible sheet tab.

Then click Unhide.

Step 2: Choose the sheet(s)

The Unhide dialog box will appear.

Select the sheet you want to show.

Tip: In newer versions of Excel, you can hold CTRL to select multiple sheets.

Step 3: Click OK

The selected sheets will now appear in the workbook.


Hide a Worksheet

If you want to hide sheets:

  1. Hold CTRL and select the sheet tabs.
  2. Right-click one of the selected tabs.
  3. Click Hide.

The selected sheets will be hidden.


If Worksheet Tabs Are Missing

Sometimes the sheet tabs at the bottom disappear. Here are two ways to fix it.


Method 1: Expand the tab area

  1. Move your mouse to the left side of the horizontal scrollbar.
  2. Drag the divider arrow to the right.

This will reveal the hidden worksheet tabs.


Method 2: Turn sheet tabs back on

  1. Click File.
  2. Click Options.
  3. Select Advanced.
  4. Scroll to Display options for this workbook.
  5. Check Show sheet tabs.
  6. Click OK.

The sheet tabs should now appear again.


Advanced: Hidden vs Very Hidden Sheets

Excel can hide sheets in two ways:

  • Hidden → can be unhidden normally
  • Very Hidden → cannot be unhidden using the Unhide button

Very hidden sheets are usually controlled using VBA.


VBA Code to Unhide All Sheets

The following code will unhide all hidden and very hidden sheets.

Sub UnHide()Dim sheet As WorksheetFor Each sheet In Worksheets
sheet.Visible = True
NextEnd Sub

This code loops through all worksheets and makes them visible.

Leave a Reply