View Single Post
  #4   Report Post  
Posted to microsoft.public.excel.misc
albertmb albertmb is offline
external usenet poster
 
Posts: 81
Default Unhide multiple sheets

Thank you it worked perfectly

"Mike" wrote:

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

"albertmb" wrote:

Hi everyone,

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

Thank you
Albert