Thread: visible sheets
View Single Post
  #4   Report Post  
Posted to microsoft.public.excel.programming
Bombermanx Bombermanx is offline
external usenet poster
 
Posts: 2
Default visible sheets

Yes, it workt. Thank you wery much!

"Frank Kabel" skrev:

Hi
try

sub foo()
dim wks as worksheet
for each wks in activeworkbook.worksheets
wks.visible=true
next
end sub

"Bombermanx" wrote:

I have some sheets that are invisible.
I need a code that makes alla sheets in a workbook visible.