Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 8
Default how do i hide a single worksheet in a workbook?

How do i hide a whole worksheet?

i've tried to click on that particular worksheet in a workbook and
hide just it, however it hides the whole workbook. i have a workbook
where people need to see the first 2 worksheets. However the 3rd
worksheet is a database of information that is connected to the first
2 worksheets so it needs to (and i would like it to) stay with the
whole workbook but just hidden so no one messes with it.

is this posisble?

  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 10,593
Default how do i hide a single worksheet in a workbook?

Just goto FormatSheetHide with the appropriate sheet active.

--
---
HTH

Bob

(there's no email, no snail mail, but somewhere should be gmail in my addy)



wrote in message
ps.com...
How do i hide a whole worksheet?

i've tried to click on that particular worksheet in a workbook and
hide just it, however it hides the whole workbook. i have a workbook
where people need to see the first 2 worksheets. However the 3rd
worksheet is a database of information that is connected to the first
2 worksheets so it needs to (and i would like it to) stay with the
whole workbook but just hidden so no one messes with it.

is this posisble?



  #3   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 8
Default how do i hide a single worksheet in a workbook?

On Nov 12, 2:03 pm, "Bob Phillips" wrote:
Just goto FormatSheetHide with the appropriate sheet active.

--
---
HTH

Bob

(there's no email, no snail mail, but somewhere should be gmail in my addy)

wrote in message

ps.com...



How do i hide a whole worksheet?


i've tried to click on that particular worksheet in a workbook and
hide just it, however it hides the whole workbook. i have a workbook
where people need to see the first 2 worksheets. However the 3rd
worksheet is a database of information that is connected to the first
2 worksheets so it needs to (and i would like it to) stay with the
whole workbook but just hidden so no one messes with it.


is this posisble?- Hide quoted text -


- Show quoted text -


thanks a bunch

  #4   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 13
Default how do i hide a single worksheet in a workbook?

In Excel 2007, you can highlight the sheet/right-click/choose "hide." To
unhide it, highlight the sheets before and after it, right-click, choose
"unhide." Just like hiding/unhiding worksheet rows or columns.

Larry



" wrote:

On Nov 12, 2:03 pm, "Bob Phillips" wrote:
Just goto FormatSheetHide with the appropriate sheet active.

--
---
HTH

Bob

(there's no email, no snail mail, but somewhere should be gmail in my addy)

wrote in message

ps.com...



How do i hide a whole worksheet?


i've tried to click on that particular worksheet in a workbook and
hide just it, however it hides the whole workbook. i have a workbook
where people need to see the first 2 worksheets. However the 3rd
worksheet is a database of information that is connected to the first
2 worksheets so it needs to (and i would like it to) stay with the
whole workbook but just hidden so no one messes with it.


is this posisble?- Hide quoted text -


- Show quoted text -


thanks a bunch


  #5   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 8,651
Default how do i hide a single worksheet in a workbook?

What did it tell you to do when you typed "hide worksheet" into Excel help?
What did you do?
--
David Biddulph

wrote in message
ps.com...
How do i hide a whole worksheet?

i've tried to click on that particular worksheet in a workbook and
hide just it, however it hides the whole workbook. i have a workbook
where people need to see the first 2 worksheets. However the 3rd
worksheet is a database of information that is connected to the first
2 worksheets so it needs to (and i would like it to) stay with the
whole workbook but just hidden so no one messes with it.

is this posisble?





  #6   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 20
Default how do i hide a single worksheet in a workbook?

On Nov 13, 7:26 am, "David Biddulph" <groups [at] biddulph.org.uk
wrote:
What did it tell you to do when you typed "hide worksheet" into Excel help?
What did you do?
--
David Biddulph

Hi, i have a similar question guys,

Is there a macro that I can Find to hide a specific sheet and unhide
it when necessary ?

Thanks for the help



wrote in message

ps.com...

How do i hide a whole worksheet?


i've tried to click on that particular worksheet in a workbook and
hide just it, however it hides the whole workbook. i have a workbook
where people need to see the first 2 worksheets. However the 3rd
worksheet is a database of information that is connected to the first
2 worksheets so it needs to (and i would like it to) stay with the
whole workbook but just hidden so no one messes with it.


is this posisble?



  #7   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 22,906
Default how do i hide a single worksheet in a workbook?

When would "necessary" take place?

Here is a toggle for hiding/unhiding when a button is clicked or shortcut key
activated.

Sub foo()
With ActiveWorkbook.Sheets("Sheet1")
If .Visible = True Then
..Visible = False
Else: .Visible = True
End If
End With
End Sub


Gord Dibben MS Excel MVP

On Tue, 13 Nov 2007 12:29:56 -0000, DDavid wrote:

On Nov 13, 7:26 am, "David Biddulph" <groups [at] biddulph.org.uk
wrote:
What did it tell you to do when you typed "hide worksheet" into Excel help?
What did you do?
--
David Biddulph

Hi, i have a similar question guys,

Is there a macro that I can Find to hide a specific sheet and unhide
it when necessary ?

Thanks for the help



wrote in message

ps.com...

How do i hide a whole worksheet?


i've tried to click on that particular worksheet in a workbook and
hide just it, however it hides the whole workbook. i have a workbook
where people need to see the first 2 worksheets. However the 3rd
worksheet is a database of information that is connected to the first
2 worksheets so it needs to (and i would like it to) stay with the
whole workbook but just hidden so no one messes with it.


is this posisble?



Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
How do I password protect a single worksheet within a workbook f Lorne Excel Discussion (Misc queries) 1 July 3rd 07 05:21 AM
How can you hide a tab for a single worksheet in Excel? TDC Excel Discussion (Misc queries) 4 February 20th 07 10:22 AM
How can you hide a tab for a single worksheet in Excel? TDC Excel Discussion (Misc queries) 0 February 20th 07 09:53 AM
merging single worksheet files into a single workbook DDK Excel Discussion (Misc queries) 1 December 5th 06 05:25 PM
emailing a single worksheet from a workbook fjfino Excel Worksheet Functions 4 December 5th 05 08:46 PM


All times are GMT +1. The time now is 01:18 PM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"