+ Reply to Thread
Results 1 to 2 of 2

PageBreak in VBA???

Hybrid View

  1. #1
    mvyvoda
    Guest

    PageBreak in VBA???

    I'm trying to set page breaks (via VBA) for a dynamic range (involving
    RowStart). Can someone please direct me to what i need the 2nd line statement
    to equal. currently it says "SELECTION" because i don't know what to enter.

    ActiveSheet.PageSetup.PrintArea = Range(Cells(1, 1), Cells(RowStart - 1,
    11)).Select
    Set ActiveSheet.HPageBreaks(1).Location = SELECTION

    Thanks for your time and energy,
    -m

  2. #2
    Tom Ogilvy
    Guest

    RE: PageBreak in VBA???

    Maybe something like this - adjust to suit.

    Dim rng as Range
    dim RowStart as Long
    RowStart = Cells(rows.count,1).End(xlup).Row
    set rng = Range(Cells(1, 1), Cells(RowStart - 1, 11))
    ActiveSheet.PageSetup.PrintArea = rng.Address(External:=True)
    Activesheet.HpageBreaks.Add Before:=rows(RowStart)
    rng.Select

    Although I am not sure why you want a manual pagebreak beyond your printarea.

    --
    Regards,
    Tom Ogilvy



    "mvyvoda" wrote:

    > I'm trying to set page breaks (via VBA) for a dynamic range (involving
    > RowStart). Can someone please direct me to what i need the 2nd line statement
    > to equal. currently it says "SELECTION" because i don't know what to enter.
    >
    > ActiveSheet.PageSetup.PrintArea = Range(Cells(1, 1), Cells(RowStart - 1,
    > 11)).Select
    > Set ActiveSheet.HPageBreaks(1).Location = SELECTION
    >
    > Thanks for your time and energy,
    > -m


+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1