Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.newusers
external usenet poster
 
Posts: 17
Default hide sheet name/ Tab

How do i hide sheet name /tab without hiding the sheets?
  #2   Report Post  
Posted to microsoft.public.excel.newusers
external usenet poster
 
Posts: 299
Default hide sheet name/ Tab

Toolsoptionsview and uncheck view sheet tabs


--


Regards,

Peo Sjoblom

Excel 95 - Excel 2007
Northwest Excel Solutions
www.nwexcelsolutions.com
(Remove ^^ from email)


"Anand vijay" wrote in message
...
How do i hide sheet name /tab without hiding the sheets?



  #3   Report Post  
Posted to microsoft.public.excel.newusers
CLR CLR is offline
external usenet poster
 
Posts: 594
Default hide sheet name/ Tab

Here's a macro toggle..........

Sub HideTabToggle()
If ActiveWindow.DisplayWorkbookTabs = True Then
ActiveWindow.DisplayWorkbookTabs = False
Else
ActiveWindow.DisplayWorkbookTabs = True
End If
End Sub


Vaya con Dios,
Chuck, CABGx3



"Anand vijay" wrote in message
...
How do i hide sheet name /tab without hiding the sheets?



  #4   Report Post  
Posted to microsoft.public.excel.newusers
external usenet poster
 
Posts: 22,906
Default hide sheet name/ Tab

Or this...........

Sub ToggleTabs()
With ActiveWindow
.DisplayWorkbookTabs = Not .DisplayWorkbookTabs
End With
End Sub


Gord Dibben MS Excel MVP

On Sat, 6 Jan 2007 11:32:55 -0500, "CLR" wrote:

Here's a macro toggle..........

Sub HideTabToggle()
If ActiveWindow.DisplayWorkbookTabs = True Then
ActiveWindow.DisplayWorkbookTabs = False
Else
ActiveWindow.DisplayWorkbookTabs = True
End If
End Sub


Vaya con Dios,
Chuck, CABGx3



"Anand vijay" wrote in message
...
How do i hide sheet name /tab without hiding the sheets?



  #5   Report Post  
Posted to microsoft.public.excel.newusers
CLR CLR is offline
external usenet poster
 
Posts: 594
Default hide sheet name/ Tab

Cool Gord.........I don't understand it, but cool........

Vaya con Dios,
Chuck, CABGx3



"Gord Dibben" <gorddibbATshawDOTca wrote in message
...
Or this...........

Sub ToggleTabs()
With ActiveWindow
.DisplayWorkbookTabs = Not .DisplayWorkbookTabs
End With
End Sub


Gord Dibben MS Excel MVP

On Sat, 6 Jan 2007 11:32:55 -0500, "CLR" wrote:

Here's a macro toggle..........

Sub HideTabToggle()
If ActiveWindow.DisplayWorkbookTabs = True Then
ActiveWindow.DisplayWorkbookTabs = False
Else
ActiveWindow.DisplayWorkbookTabs = True
End If
End Sub


Vaya con Dios,
Chuck, CABGx3



"Anand vijay" wrote in message
...
How do i hide sheet name /tab without hiding the sheets?







  #6   Report Post  
Posted to microsoft.public.excel.newusers
external usenet poster
 
Posts: 22,906
Default hide sheet name/ Tab

Don't think I do either but..........<g

The Not .whatever can be used to toggle many items.

With Selection
.WrapText = Not .WrapText
.Font.Bold = Not .Font.Bold
End With

Or simply

Selection.WrapText = Not Selection.WrapText


Gord


On Sat, 6 Jan 2007 12:50:02 -0500, "CLR" wrote:

Cool Gord.........I don't understand it, but cool........

Vaya con Dios,
Chuck, CABGx3



"Gord Dibben" <gorddibbATshawDOTca wrote in message
.. .
Or this...........

Sub ToggleTabs()
With ActiveWindow
.DisplayWorkbookTabs = Not .DisplayWorkbookTabs
End With
End Sub


Gord Dibben MS Excel MVP

On Sat, 6 Jan 2007 11:32:55 -0500, "CLR" wrote:

Here's a macro toggle..........

Sub HideTabToggle()
If ActiveWindow.DisplayWorkbookTabs = True Then
ActiveWindow.DisplayWorkbookTabs = False
Else
ActiveWindow.DisplayWorkbookTabs = True
End If
End Sub


Vaya con Dios,
Chuck, CABGx3



"Anand vijay" wrote in message
...
How do i hide sheet name /tab without hiding the sheets?




  #7   Report Post  
Posted to microsoft.public.excel.newusers
external usenet poster
 
Posts: 22,906
Default hide sheet name/ Tab

Each time you run the toggle the value becomes either true or false.

Whatever it is gets changed to the other value.

In Immediate Window type ?.DisplayWorkbookTabs to see either true or false

Run the toggle macro and value changes.


Gord

On Sat, 06 Jan 2007 10:48:47 -0800, Gord Dibben <gorddibbATshawDOTca wrote:

Don't think I do either but..........<g

The Not .whatever can be used to toggle many items.

With Selection
.WrapText = Not .WrapText
.Font.Bold = Not .Font.Bold
End With

Or simply

Selection.WrapText = Not Selection.WrapText


Gord


On Sat, 6 Jan 2007 12:50:02 -0500, "CLR" wrote:

Cool Gord.........I don't understand it, but cool........

Vaya con Dios,
Chuck, CABGx3



"Gord Dibben" <gorddibbATshawDOTca wrote in message
. ..
Or this...........

Sub ToggleTabs()
With ActiveWindow
.DisplayWorkbookTabs = Not .DisplayWorkbookTabs
End With
End Sub


Gord Dibben MS Excel MVP

On Sat, 6 Jan 2007 11:32:55 -0500, "CLR" wrote:

Here's a macro toggle..........

Sub HideTabToggle()
If ActiveWindow.DisplayWorkbookTabs = True Then
ActiveWindow.DisplayWorkbookTabs = False
Else
ActiveWindow.DisplayWorkbookTabs = True
End If
End Sub


Vaya con Dios,
Chuck, CABGx3



"Anand vijay" wrote in message
...
How do i hide sheet name /tab without hiding the sheets?




  #8   Report Post  
Posted to microsoft.public.excel.newusers
CLR CLR is offline
external usenet poster
 
Posts: 594
Default hide sheet name/ Tab

Slicker than all...........something for my goodie-stash for
sure..........thanks Gord

Vaya con Dios,
Chuck, CABGx3


"Gord Dibben" <gorddibbATshawDOTca wrote in message
...
Each time you run the toggle the value becomes either true or false.

Whatever it is gets changed to the other value.

In Immediate Window type ?.DisplayWorkbookTabs to see either true or

false

Run the toggle macro and value changes.


Gord

On Sat, 06 Jan 2007 10:48:47 -0800, Gord Dibben <gorddibbATshawDOTca

wrote:

Don't think I do either but..........<g

The Not .whatever can be used to toggle many items.

With Selection
.WrapText = Not .WrapText
.Font.Bold = Not .Font.Bold
End With

Or simply

Selection.WrapText = Not Selection.WrapText


Gord


On Sat, 6 Jan 2007 12:50:02 -0500, "CLR"

wrote:

Cool Gord.........I don't understand it, but cool........

Vaya con Dios,
Chuck, CABGx3



"Gord Dibben" <gorddibbATshawDOTca wrote in message
. ..
Or this...........

Sub ToggleTabs()
With ActiveWindow
.DisplayWorkbookTabs = Not .DisplayWorkbookTabs
End With
End Sub


Gord Dibben MS Excel MVP

On Sat, 6 Jan 2007 11:32:55 -0500, "CLR"

wrote:

Here's a macro toggle..........

Sub HideTabToggle()
If ActiveWindow.DisplayWorkbookTabs = True Then
ActiveWindow.DisplayWorkbookTabs = False
Else
ActiveWindow.DisplayWorkbookTabs = True
End If
End Sub


Vaya con Dios,
Chuck, CABGx3



"Anand vijay" wrote in message
...
How do i hide sheet name /tab without hiding the sheets?






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
macro unouwanme Excel Discussion (Misc queries) 9 August 31st 06 09:38 PM
My hide sheet option in excel is not working arleen Excel Discussion (Misc queries) 1 October 25th 05 06:13 PM
Using a relative SHEET reference for source data in a chart James Charts and Charting in Excel 6 August 16th 05 05:07 PM
how to hide rows in a protected sheet Prakash Excel Worksheet Functions 7 January 18th 05 02:42 PM
Naming & renaming a sheet tab Cgbilliar Excel Worksheet Functions 1 November 7th 04 05:57 PM


All times are GMT +1. The time now is 07:08 AM.

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

About Us

"It's about Microsoft Excel"