Unhide multiple sheets

  • Thread starter Thread starter albertmb
  • Start date Start date
A

albertmb

Hi everyone,

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

Thank you
Albert
 
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
 
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
 
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
 

Ask a Question

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.

Ask a Question

Back
Top