Macro To Insert Page Breaks?

Xndman

Board Regular
Joined
Nov 2, 2002
Messages
211
Hi, I have a long string of data that I need page breaks between the Dept # as shown below. I appreciate the help.

Book3
ABCD
1DEPTDEPT NAME$'s
21001.3311SYS FITNESS CENTER10
31001.3311SYS FITNESS CENTER20
41001.3311SYS FITNESS CENTER30
51001.4101SYS ADMINISTRATIVE40
61001.4101SYS ADMINISTRATIVE50
71001.4102SYS CORPORATE DEV60
81001.4102SYS CORPORATE DEV70
91001.4103SYS MEDICAL ADMIN80
101001.4103SYS MEDICAL ADMIN90
111001.4103SYS MEDICAL ADMIN100
Sheet1
 

Excel Facts

Does the VLOOKUP table have to be sorted?
No! when you are using an exact match, the VLOOKUP table can be in any order. Best-selling items at the top is actually the best.
Sub InsertingPageBreaks()

Dim x

For x = 3 To 10000
If Cells(x, 1).Value = "" Then
Exit For
End If

If Cells(x, 1).Value <> Cells(x - 1, 1).Value Then
Cells(x, 1).Select
ActiveWindow.SelectedSheets.HPageBreaks.Add Before:=ActiveCell
End If
Next

End Sub
 
Upvote 0

Forum statistics

Threads
1,214,886
Messages
6,122,093
Members
449,064
Latest member
Danger_SF

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