Sometimes when we create larger reports in Excel, we will hide few sheets where we entered raw data or controls or calculations.
It's a tedious task to right click and unhide all the sheets one by one.
Sometimes, we will have sheets which are hidden from VBA IDE also which cannot be unhidden from Excel GUI.
You can unhide all the sheets in an excel workbook with a small piece of code below.
Sub UnHideSheets()
Dim Sht As Worksheet
For Each Sht In ThisWorkbook.Sheets
Sht.Visible = xlSheetVisible
Next Sht
End Sub
No comments:
Post a Comment