Unhide multiple sheets

A

albertmb

Hi everyone,

Can you please help me? Is there a possibilty of unhiding multiple sheets
at the same time?

Thank you
Albert
 
E

Eduardo

Hi,
Try this code I got from the comunity
Sub show_all()
Dim ws As Worksheet
For Each ws In Worksheets
ws.Visible = True
Next
End Sub

Hope this will help if yes please click yes where ask if this post was
helpful. Thank you
 
M

Mike

Only with vba code. Something like this will work
Sub unHideSheets()
Dim ws As Worksheet
For Each ws In Worksheets
ws.Visible = xlSheetVisible
Next
End Sub
 
A

albertmb

Thank you it worked perfectly

Mike said:
Only with vba code. Something like this will work
Sub unHideSheets()
Dim ws As Worksheet
For Each ws In Worksheets
ws.Visible = xlSheetVisible
Next
End Sub
 
Top