VBA CODE to Unhide all hidden worksheets

If you want to unhide all the worksheet using vba code.

Use following programs to unhide the sheet.

Sub UnhideAllSheets()
Dim ws As Worksheet
For Each ws In ActiveWorkbook.Worksheets
ws.Visible = xlSheetVisible
Next ws
End Sub