Different Methods to Unhide Excel Sheets
Unhiding a single excel sheet is as easy as hiding them. But as a new learner, it is important to know the process. We can unhide the sheet in several ways. We will show each one of them now in this article.
There are various ways by which you can unhide a single excel sheet.
Method #1 – Using Right Click
- Step 1: To unhide the sheet, we need to right-click any of the worksheet tabs.
- Step 2: Once you right-click, you could see the below options.
- Step 3: In these options, select the “Unhide” option, and you will see a list of all the worksheets that are hidden.
- Step 4: Select the worksheet that you want to unhide and click on, OK. It will unhide the selected sheet.
- Step 5: Now, I can see the worksheet named “WS1” in my sheet tab.
Method #2
This method is more tedious than the above one, but it is always a good option to know different techniques.
- Step 1: To unhide single excel sheet go to Home > Format > Hide & Unhide > Unhide Sheet
- Step 2: Upon clicking that option, as shown in the above image, we could see the below window.
As usual, select the worksheet that you want to unhide and click on Ok. It will unhide the selected sheet.
Method #3
Now comes a more efficient one, i.e., using Excel Shortcut Key. Yes, we can unhide the sheet using the shortcut key.
4.9 (1,353 ratings) 35+ Courses | 120+ Hours | Full Lifetime Access | Certificate of Completion
- Step 1: Just press ALT + H + O + U + H to open the unhide sheet box.
- Step 2: This will open the below window.
As usual, select the worksheet that you want to unhide and click on Ok. It will unhide the selected sheet.
Method #4 – Unhide Multiple Sheets
Unhide window can only unhide single sheets at a time, but imagine you have to unhide 10 sheets, then repeating the same set of tasks 10 times is frustrating. So, how do we unhide all the worksheets once??
We can unhide all the sheets by writing the VBA code in excel. Below is the code to unhide all the hidden worksheets in the workbook.
Code:
Sub Unhide_All_Worksheets() Dim WSht As Worksheet For Each WSht In ActiveWorkbook.Worksheets WSht.Visible = xlSheetVisible Next WSht End Sub
- I have used the For Each loop in VBA to unhide the worksheet. What you have to do is to copy the above code and go to your worksheet, then press ALT + F11 to open Visual Basic Editor.
- Now insert a new module under the INSERT option.
- In the new module, paste the copied code.
- Now run this code. It will unhide all the hidden worksheets in the workbook.
Method #5 – Unhide All Worksheets Except Particular Worksheet
There are situations where we need to unhide all the worksheets except the specific worksheet. In such cases also we can use VBA Coding. Assume you want to unhide all the worksheets except the worksheet named “Workings.”
The below code will do the same.
Code:
Sub Unhide_All_Except_One() Dim WSht As Worksheet For Each WSht In ActiveWorkbook.Worksheets If WSht.Name <> "Workings" Then WSht.Visible = xlSheetVisible End If Next WSht End Sub
Now run this code, and it will unhide all worksheets except the one named “Workings.”
You can change the worksheet name from “Workings” to your worksheet name.
Method #6 – Unhide Only Specific Excel Sheet
Similarly, if you want to unhide only a specific excel sheet, VBA can do this as well. For example, if you want to unhide only the worksheet named “Workin,” then we can use this code.
Code:
Sub Unhide_One_Sheet() Dim WSht As Worksheet For Each WSht In ActiveWorkbook.Worksheets If WSht.Name = "Workings" Then WSht.Visible = xlSheetVisible End If Next WSht End Sub
Recommended Articles
This has been a guide to Unhide Sheets in Excel. Here we discuss how to unhide single and multiple worksheets using different methods in excel with a downloadable template. You can learn more from the following articles –
- Comparison Chart in Excel
- Auditing Tool in Excel
- Percentage Change Excel Formula
- Hide Columns in VBA
- 35+ Courses
- 120+ Hours
- Full Lifetime Access
- Certificate of Completion