Page break on last row

sevenfive85

New Member
Joined
Jul 21, 2021
Messages
22
Office Version
  1. 365
Platform
  1. Windows
Hi I'm looking for some codes to automate a page break. I need excel to look in column A for the last input and have a page break there. In the example below I would need a page break at the bottom of row 21. Thank you.

1628557600857.png
 

Excel Facts

What is the last column in Excel?
Excel columns run from A to Z, AA to AZ, AAA to XFD. The last column is XFD.
Hi All,
I now got some codes that will add page break as I need but now I am encountering another issue, it wants to print below the first page break(which are empty pages). Is there a way to move the last manual page break up or let the printer know to print up to first page break only? Thank you


Sub MACRO3()
ActiveSheet.ResetAllPageBreaks
J = ActiveSheet.Cells(Rows.Count, "A").End(xlUp).Row
ActiveSheet.Rows(J + 1).PageBreak = xlPageBreakManual
End Sub
1628691315194.png
 
Upvote 0
Or is there a code that I can set it to print from A1:Kxxx (last row with something in column "A")?
 
Upvote 0

Forum statistics

Threads
1,215,746
Messages
6,126,641
Members
449,325
Latest member
Hardey6ix

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