
- #How to unhide all sheets in excel how to
- #How to unhide all sheets in excel full
- #How to unhide all sheets in excel code
Just click Kutools > Show / Hide > Unhide All Sheets to batch display all hidden sheet tabs at once.
#How to unhide all sheets in excel full
Full feature free trial 30-day, no credit card required! Get It Nowĭisplay all hidden sheet tabs with only one click Kutools for Excel- Includes more than 300 handy tools for Excel. Note: For hiding all sheet tabs except selected ones, please select these sheet tabs you will not hide in the Sheet Tab bar, and then click Kutools > Show / Hide > Hide Unselected Sheets.

And then all sheet tabs are hidden except the active one. Just click Kutools > Show / Hide > Hide Unselected Sheets. Hide all sheet tabs except active/selected one with only one click If you have Kutools for Excel’s installed, you can apply its Hide Unselected Sheets utility to hide all sheet tabs from the Sheet Tab bar except the active/select one, or apply the Unhide All Sheets utility to display all hidden sheet tabs with only one click. For batch displaying all hidden sheet tabs with only one click, please click here.ĭisplay or hide all sheet tabs except active/selected one with Kutools for Excel Note: This method can only display one hidden sheet tab at a time. In the opening Unhide dialog box, select the sheet tab which you want to display in the Sheet Tab bar, and click the OK button. Click Home > Format > Hide & Unhide > Unhide Sheet.Ģ. See screenshot:Īnd then you will see all selected sheet tabs are hidden from the Sheet Tab bar.ĭisplay one hidden sheet tab with Hide & Unhide featureġ. Click Home > Format > Hide & Unhide > Hide Sheet. (2) Holding the Ctrl key, you can select multiple nonadjacent sheet tabs with clicking each sheet tab in the Sheet Tab bar one by one.Ģ. (1) Holding the Shift key, you can select multiple adjacent sheet tabs with clicking the first sheet tab and the last one in the Sheet Tab bar Select one or multiple sheet tabs you will hide in the Sheet Tab bar. We can apply Excel’s Hide & Unhide feature to hide one or multiple selected sheet tabs easily.ġ. Unhide a specific worksheet Module Version: Sub UnhideSpecificWorksheet()Įnd Sub Immediate Window version: Worksheets("Sheet1").Hide one or multiple selected sheet tabs with Hide & Unhide feature Unhide all worksheets Module Version: Sub UnhideAllSheets()Įnd Sub Immediate Window version: For Each sh In Worksheets: sh.Visible = True: Next sh Also note that icons and keyboard shortcuts will not be available.
#How to unhide all sheets in excel code
Unfortunately, any code you use in the Immediate Window will not be saved. The Immediate Window method, on the other hand, is essentially a quick and dirty method where you can simply copy and paste the code into the Immediate Window, and press the Enter key to run it. Remember to save your file in either XLSM or XLAM format to save your VBA code.

Furthermore, the subroutines in modules can be used by icons in the menu ribbons or keyboard shortcuts.

The main advantage of the module method is that it allows saving the code in the file, so that it can be used again later. Copy and paste the code into the module to run it. In the Module method, you need to add the module into the workbook or the add-in file. On the other hand, you can use the xlSheetVeryHidden option to prevent any user interaction with the hidden worksheet. XlSheetVisible and xlSheetHidden values specify a "natural" visible / hidden status, where the user can change the status by right-clicking the worksheet name, and select Hide / Unhide. The Visible property determines the visibility status of a worksheet, as the name suggests. Worksheets are objects in the workbook's worksheet collection and they have a Visible property.
#How to unhide all sheets in excel how to
In this article, we're going to show you how to unhide sheets in Excel with VBA.

You might want to hide or unhide certain sheets in a workbook for security reasons and there are several ways you can do this.
