Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.newusers
|
|||
|
|||
![]()
I am using MS Excel 2007. I have a workbook with many worksheets. Sometimes I
need to see the headings, sometimes not. Is it possible to turn on or off the headings for ALL the worksheets simultaneously. Thanks. |
#2
![]()
Posted to microsoft.public.excel.newusers
|
|||
|
|||
![]()
Never mind. If I select all sheets by right-clicking on the tabs, then
checking or unchecking headings in Show/Hide, the headings are toggled, so the problem is solved. Just curious. Is there another way. "Rebecca" wrote: I am using MS Excel 2007. I have a workbook with many worksheets. Sometimes I need to see the headings, sometimes not. Is it possible to turn on or off the headings for ALL the worksheets simultaneously. Thanks. |
#3
![]()
Posted to microsoft.public.excel.newusers
|
|||
|
|||
![]()
Hi Rebecca,
You could paste the following macro into your sheet and give it a keyboard shortcut or a button. It turns headings of all sheets off if they're on, and vice versa. Sub DisplayHeadings() A = ActiveSheet.Name Sheets.Select If ActiveWindow.DisplayHeadings = False Then _ ActiveWindow.DisplayHeadings = True Else _ ActiveWindow.DisplayHeadings = False Sheets(A).Select End Sub Regards - Dave. |
#4
![]()
Posted to microsoft.public.excel.newusers
|
|||
|
|||
![]()
That sounds good. Thanks for the help, Dave.
"Dave" wrote: Hi Rebecca, You could paste the following macro into your sheet and give it a keyboard shortcut or a button. It turns headings of all sheets off if they're on, and vice versa. Sub DisplayHeadings() A = ActiveSheet.Name Sheets.Select If ActiveWindow.DisplayHeadings = False Then _ ActiveWindow.DisplayHeadings = True Else _ ActiveWindow.DisplayHeadings = False Sheets(A).Select End Sub Regards - Dave. |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Is there a key combo to toggle between worksheets? | Excel Discussion (Misc queries) | |||
Toggle between worksheets | Excel Worksheet Functions | |||
Shortcut toggle between worksheets in the same workbook? | Excel Worksheet Functions | |||
How do you toggle back and forth between worksheets in Excel? | Excel Worksheet Functions | |||
toggle between worksheets? | Excel Discussion (Misc queries) |