You can do that with a macro, if it is the same sheets then you can record a
macro while you unhide
them and then next time run that macro.. Or you can use what I use
Sub UnhideSheet()
Application.ScreenUpdating = False
Dim mySht As Worksheet
For Each mySht In ActiveWorkbook.Worksheets
mySht.Visible = True
Next mySht
Application.ScreenUpdating = True
End Sub
Want to reply to this thread or ask your own question?
You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.