visible sheets

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I have some sheets that are invisible.
I need a code that makes alla sheets in a workbook visible.
 
Could you do a for each loop that has a sheet.visible inside?? Tha
would work.
 
Hi
try

sub foo()
dim wks as worksheet
for each wks in activeworkbook.worksheets
wks.visible=true
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