ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Discussion (Misc queries) (https://www.excelbanter.com/excel-discussion-misc-queries/)
-   -   Page Break (https://www.excelbanter.com/excel-discussion-misc-queries/157559-page-break.html)

pm

Page Break
 
I want to do a page break at each new location...for example:

Location#
11028
11029

At the end of each location I want to do a page break.....How can I do this???



MartinW

Page Break
 
Hi pm,

Go to ViewPage Break Preview
Click on a blue line and drag it to where you want it.
If you get a bit savage with it at first you will soon see how it works.
By savage I mean grab one line and drag it way off to the right
then grab another and drag it way down the bottom.

HTH
Martin

"pm" wrote in message
...
I want to do a page break at each new location...for example:

Location#
11028
11029

At the end of each location I want to do a page break.....How can I do
this???





Gord Dibben

Page Break
 
You OK with a macro?

Sub InsertBreak_At_Change()
Dim i As Long
For i = Columns(1).Rows.Count To 1 Step -1
If Selection(i).Row = 1 Then Exit Sub
If Selection(i) < Selection(i - 1) And Not IsEmpty _
(Selection(i - 1)) Then
With Selection(i)
.PageBreak = xlPageBreakManual
End With
End If
Next
End Sub


Gord Dibben MS Excel MVP



On Sat, 8 Sep 2007 07:20:01 -0700, pm wrote:

I want to do a page break at each new location...for example:

Location#
11028
11029

At the end of each location I want to do a page break.....How can I do this???



pm

Page Break
 
Gord - - works fabulously! Thanks so much
pm

"Gord Dibben" wrote:

You OK with a macro?

Sub InsertBreak_At_Change()
Dim i As Long
For i = Columns(1).Rows.Count To 1 Step -1
If Selection(i).Row = 1 Then Exit Sub
If Selection(i) < Selection(i - 1) And Not IsEmpty _
(Selection(i - 1)) Then
With Selection(i)
.PageBreak = xlPageBreakManual
End With
End If
Next
End Sub


Gord Dibben MS Excel MVP



On Sat, 8 Sep 2007 07:20:01 -0700, pm wrote:

I want to do a page break at each new location...for example:

Location#
11028
11029

At the end of each location I want to do a page break.....How can I do this???




Gord Dibben

Page Break
 
Thanks for the feedback.

Gord

On Sat, 8 Sep 2007 09:18:02 -0700, pm wrote:

Gord - - works fabulously! Thanks so much
pm

"Gord Dibben" wrote:

You OK with a macro?

Sub InsertBreak_At_Change()
Dim i As Long
For i = Columns(1).Rows.Count To 1 Step -1
If Selection(i).Row = 1 Then Exit Sub
If Selection(i) < Selection(i - 1) And Not IsEmpty _
(Selection(i - 1)) Then
With Selection(i)
.PageBreak = xlPageBreakManual
End With
End If
Next
End Sub


Gord Dibben MS Excel MVP



On Sat, 8 Sep 2007 07:20:01 -0700, pm wrote:

I want to do a page break at each new location...for example:

Location#
11028
11029

At the end of each location I want to do a page break.....How can I do this???






All times are GMT +1. The time now is 11:32 PM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
ExcelBanter.com