Select Page Break Areas/Range

hey yer barred

Board Regular
Joined
Jun 19, 2007
Messages
232
Hi All

I am using Excel 2007 and was wondering if anyone knows how to through VBA select each page break area range, copy it and paste it onto a new worksheet?

In a nutshell, I have sevreal Excel workbooks and each has at least 2 - 3 page breaks. I need to select one at a time and copy and paste into another worksheet ... is this at all possible?
 

Excel Facts

Which came first: VisiCalc or Lotus 1-2-3?
Dan Bricklin and Bob Frankston debuted VisiCalc in 1979 as a Visible Calculator. Lotus 1-2-3 debuted in the early 1980's, from Mitch Kapor.
This will select the Page Break Range if the are no Vertical Page breaks. You can then copy selection to a New Sheet.


Code:
Sub Test()
Dim wb As Workbook, ws As Worksheet, i As Long, j As Long

Set wb = ActiveWorkbook
Set ws = wb.ActiveSheet
j = 1
    If ws.VPageBreaks.Count = 0 Then
        For i = 1 To ws.HPageBreaks.Count
            Rows(j & ":" & ws.HPageBreaks.Item(i).Location.Row - 1).Select
            j = ws.HPageBreaks.Item(i).Location.Row
        Next i
    End If
      
End Sub
 
Upvote 0
You absoulute LEGEND! Thank you so much, I tried all day yesterday to get my head around this and just couldnt do it!

You won't beleive how much this is going to help me.
 
Upvote 0
No probs.

I had no idea how to do it either, but recently have found it quite useful to, in this case.

Set the workbook and Worksheet objects and then using the locals window look through the object properties for something remotely similar to that that I'm looking for. :)
 
Upvote 0

Forum statistics

Threads
1,224,537
Messages
6,179,408
Members
452,912
Latest member
alicemil

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