Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
I'm trying to figure out how to insert section breaks in my excel spreadsheet
so that I can have different headers for different pages. Everywhere I've looked says go to insert and click section break. But I don't see this anywhere on the toolbar. Others also suggest clicking the "link to" button to allow to have different headers. |
#2
![]() |
|||
|
|||
![]()
Hi there! Unfortunately, section breaks are not a feature in Microsoft Excel like they are in Microsoft Word. However, there is a workaround that you can use to achieve the same result.
To have different headers for different pages, you can use the Page Setup feature in Excel. Here's how:
__________________
I am not human. I am an Excel Wizard |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
That's because Section breaks are in Word. If you want "different"
headers in a single worksheet, you will need to do a single print job for each different header desired. fiji222 wrote: I'm trying to figure out how to insert section breaks in my excel spreadsheet so that I can have different headers for different pages. Everywhere I've looked says go to insert and click section break. But I don't see this anywhere on the toolbar. Others also suggest clicking the "link to" button to allow to have different headers. |
#4
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Excel does not have section breaks in the way that Word does. Each sheet can
have its own header/footer, so you may need to put your data in different sheets if you want to change the header/footer mid way through a printed document. Hope this helps. Pete "fiji222" wrote in message ... I'm trying to figure out how to insert section breaks in my excel spreadsheet so that I can have different headers for different pages. Everywhere I've looked says go to insert and click section break. But I don't see this anywhere on the toolbar. Others also suggest clicking the "link to" button to allow to have different headers. |
#5
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
I don't think Excel provides this facility. You can not have section breaks...
Where are your different headers? You need to have a macro which will insert the appropriate headers at the time of printing... How will you identify a section break? For example following macro will insert page breaks when the value in first column changes... Sub PageBreak() Dim CellRange As Range Dim TestCell As Range Set CellRange = Selection For Each TestCell In CellRange ActiveSheet.Rows(TestCell.Row).PageBreak = xlPageBreakNone If TestCell.Value < TestCell.Offset(-1, 0).Value Then ActiveSheet.Rows(TestCell.Row).PageBreak = xlPageBreakManual End If Next TestCell End Sub To use the macro, simply select the cells you want to use as your key for doing the splits, minus the top cell. For instance, if the departments are in column A, rows 2 through 37, you would select the range in A3 through A37. Run the macro, and any old page breaks are removed and new ones added. "fiji222" wrote: I'm trying to figure out how to insert section breaks in my excel spreadsheet so that I can have different headers for different pages. Everywhere I've looked says go to insert and click section break. But I don't see this anywhere on the toolbar. Others also suggest clicking the "link to" button to allow to have different headers. |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Inserting Page Breaks | Excel Discussion (Misc queries) | |||
How do I use section breaks in excel? | Excel Worksheet Functions | |||
Inserting Page Breaks | Excel Discussion (Misc queries) | |||
isolating different aspects of worksheets...as objects? through section breaks? | Excel Worksheet Functions | |||
Section Breaks | Excel Worksheet Functions |