tabs in webpage

  • Thread starter Thread starter Hansn
  • Start date Start date
H

Hansn

Hi,
I've hidden my sheet tabs via the tools - options - view, but when published
in web view or saved as web page they appear, how can I hide?
(Hidden pages must be available with hyperlink on sheet 1)


Thank you.
 
You can make the sheets veryhidden.
http://www.j-walk.com/ss/excel/usertips/tip036.htm


Try this simple macro, and modify to suite your needs:
Dim sh As Worksheet
For Each sh In ActiveWorkbook.Worksheets
If (sh.Name) <> "Password" Then
If sh.Visible = True Then
sh.Visible = xlSheetVeryHidden
End If
End If
Next sh


Regards,
Ryan---
 

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