How to unhide sheets in excel
Tutor 5 (120 Reviews)
Excel Tutor
Still stuck with a Excel question
Ask this expertAnswer
Unhiding a sheet restores the visibility of a hidden worksheet within an Excel workbook. Hidden sheets remain functional and contain data, but do not display in the worksheet tabs at the bottom of the workbook window.
How to unhide a single sheet in Excel
To unhide a single sheet in Excel, right-click any visible sheet tab, select "Unhide" from the context menu, choose the sheet you want to make visible from the dialog box, and click "OK."
Steps to unhide one sheet
- Right-click any visible worksheet tab at the bottom of your workbook.
- Click "Unhide" from the context menu.
- Select the sheet name you want to unhide from the list in the Unhide dialog box.
- Click "OK."
The sheet appears in the tab bar and becomes accessible for editing and viewing.
How to unhide multiple sheets in Excel
To unhide multiple sheets in Excel, you must repeat the unhide process for each sheet individually through the right-click menu method, as the standard Unhide dialog box allows selection of only one sheet at a time.
Alternative method using VBA for multiple sheets
Using VBA code unhides all sheets simultaneously. Press Alt+F11 (Windows) or Fn+Option+F11 (Mac) to open the Visual Basic Editor, insert a new module, paste the code, and run the macro.
Windows shortcut: Alt+F11
Mac shortcut: Fn+Option+F11
- Open the Visual Basic Editor using the keyboard shortcut.
- Click "Insert" in the menu bar and select "Module."
- Paste the following code into the module window:
Sub UnhideAllSheets()
Dim ws As Worksheet
For Each ws In ThisWorkbook.Worksheets
ws.Visible = xlSheetVisible
Next ws
End Sub
- Press F5 to run the macro or click "Run" and select "Run Sub/UserForm."
- Close the Visual Basic Editor.
All hidden sheets become visible in your workbook tabs.
How to unhide very hidden sheets in Excel
To unhide very hidden sheets in Excel, you must use the Visual Basic Editor because these sheets do not appear in the standard Unhide dialog box. Very hidden sheets have their Visible property set to xlSheetVeryHidden through VBA code.
Steps to unhide very hidden sheets
- Press Alt+F11 (Windows) or Fn+Option+F11 (Mac) to open the Visual Basic Editor.
- Press Ctrl+R (Windows) or Cmd+R (Mac) to display the Project Explorer pane.
- Locate the sheet you want to unhide in the Project Explorer under "Microsoft Excel Objects."
- Click the sheet name to select it.
- Press F4 to open the Properties window.
- Find the "Visible" property in the Properties window.
- Click the dropdown next to "Visible" and change the value from "-1 - xlSheetVeryHidden" to "-1 - xlSheetVisible."
- Close the Visual Basic Editor.
The previously very hidden sheet appears in the worksheet tabs.
Why would a sheet be hidden in Excel?
A sheet would be hidden in Excel to remove clutter from the workbook interface, protect sensitive data from casual viewing, store calculations or reference tables that users do not need to see, or organize complex workbooks with many worksheets.
What is the difference between hidden and very hidden sheets?
Hidden sheets can be unhidden through the right-click menu and Unhide dialog box by any user, while very hidden sheets require VBA access through the Visual Basic Editor to make visible. Very hidden sheets provide stronger protection against accidental or unauthorized viewing because standard Excel interface options do not display them in the Unhide list.
Can you unhide sheets with keyboard shortcuts?
No, Excel does not provide a built-in keyboard shortcut to unhide sheets directly. You must use the right-click context menu method or access the Visual Basic Editor to change sheet visibility properties.
How to check if your workbook has hidden sheets
To check if your workbook has hidden sheets, right-click any visible sheet tab and look for the "Unhide" option in the context menu. The Unhide option appears grayed out when no sheets are hidden and remains active when hidden sheets exist in the workbook.
Count total sheets versus visible sheets
Checking the number of worksheets in the Visual Basic Editor Project Explorer shows all sheets including hidden ones. Compare this count with the visible tabs at the bottom of your workbook to identify discrepancies.
- Press Alt+F11 (Windows) or Fn+Option+F11 (Mac) to open the Visual Basic Editor.
- Press Ctrl+R (Windows) or Cmd+R (Mac) to view the Project Explorer.
- Expand your workbook name under "Microsoft Excel Objects."
- Count the total number of sheet objects listed.
- Return to Excel and count the visible worksheet tabs.
A difference between these numbers indicates hidden sheets exist in your workbook.
What happens to formulas referencing hidden sheets?
Formulas referencing hidden sheets continue to function normally and calculate correctly. Hiding a sheet affects only its visibility and does not break formula links or prevent the sheet from participating in calculations across the workbook.
Can protected workbooks prevent unhiding sheets?
Yes, workbook protection can prevent unhiding sheets when the workbook structure is protected. Users cannot unhide sheets until they unprotect the workbook by clicking "Review" in the ribbon, selecting "Unprotect Workbook," and entering the password.
Steps to unprotect a workbook before unhiding
- Click the "Review" tab in the Excel ribbon.
- Click "Unprotect Workbook" in the Protect group.
- Enter the password in the dialog box.
- Click "OK."
- Follow the standard unhide procedures.
The workbook structure becomes editable and allows you to unhide sheets.
. Was this Helpful?Get Online Tutoring or Questions answered by Experts.
You can post a question for a tutor or set up a tutoring session
Answers · 1
How to track changes in excel
Answers · 1
How to lock certain cells in excel
Answers · 1
How to merge two excel spreadsheets
Answers · 1
Where is the name box in excel
Answers · 1