Hide one sheet tab

T

Tempy

Hi all, is it possible to hide just one tab in a workbook ?
I have a workbook "Recon.xls" with the sheets "Recon for SAP" and
"TBSheet" and i would like to hide "TBSheet"

Thank you in advance,

Tempy

*** Sent via Developersdex http://www.developersdex.com ***
 
D

Doug Glancy

Tempy,

Worksheets("TBSheet"").Visible = xlVeryHidden

You're not a Van Morrison fan by any chance are you?

hth,

Doug
 
B

bill k

while you're in that sheet go to <format><sheet>hide

to unhide .............similar pat
 
D

Doug Glancy

Tempy,

In 1967 Van Morrison released Blowing Your Mind which had a 10 minute ramble
called "T.B.Sheets." For your enjoyment, here's a brief excerpt:

The cool room, Lord is a fool's room.
The cool room, Lord is a fool's room.
And I can almost smell your T.B. sheets
And I can almost smell your T.B. sheets
On your sick bed.

Doug
 
G

Gord Dibben

Tempy

Manually.....Format>Sheet>Hide

Programmatically.....

Sub Hide()
Sheets("TBSheet").Visible = False
End Sub


Gord Dibben Excel MVP
 

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

Similar Threads

Help with - J.Walkenbachs code 2
CommandBar problem - Question 10
Hiding Excel Menus 0
Hiding Excel Menus 1
Hiding Excel Menus 0
hide rows in workbook 1
Monitor Changes 0
macro for sheet hide 2

Top