Print Preview Page Breaks

howard

Well-known Member
Joined
Jun 26, 2006
Messages
6,561
Office Version
  1. 2021
Platform
  1. Windows
I have code to show the first page break on a "page preview" where text "(continues)" is in Col A

I need to have the second break break at "Signature Saes Manager"

It would be appreciated if someone could assist me




Code:
 Sub Print_Preview ()
Dim C As Range, f, lastrow&, pgCount%
With ActiveSheet
    lastrow = .Cells(.Rows.Count, "b").End(xlUp).Row
    With .PageSetup
        .PrintGridlines = True
        .PrintArea = "B3529:R5270"
        .PrintTitleRows = ""
        .PrintTitleColumns = ""
        .LeftHeader = "&D&T"
        .Orientation = xlLandscape
        .FitToPagesWide = 1
         .Zoom = 69
        .ScaleWithDocHeaderFooter = True
    End With
    ActiveWindow.View = xlNormalView
    .Cells.PageBreak = xlPageBreakNone
    For Each r In .Range("B3529:b5270")
   If InStr(1, r.Value, "(continues)", vbTextCompare) > 0 Then
            .Rows(r.Row + 2).PageBreak = xlPageBreakManual
        End If
    Next r
    ActiveWindow.View = xlPageBreakPreview
    For Each r In .Range("B3529:b5270")
        If InStr(1, r.Value, "(continues)", vbTextCompare) > 0 Then
            pgCount = pgCount + 1
            On Error Resume Next
            Set .HPageBreaks(pgCount).Location = .Cells(r.Row + 2, 4)
        End If
    Next r
End With
ActiveSheet.Range("B3539").Select

End Sub
 

Excel Facts

When they said...
When they said you are going to "Excel at life", they meant you "will be doing Excel your whole life".

Forum statistics

Threads
1,214,936
Messages
6,122,340
Members
449,079
Latest member
rocketslinger

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top