Repeating Rows @ bottom when printing

Moonie

New Member
Joined
Feb 19, 2003
Messages
27
Hello again peoples!

I know you can "repeat rows at top" in the print set-up, but is there any way you can repeat rows at the bottom of each page aswell?
 

Excel Facts

Links? Where??
If Excel says you have links but you can't find them, go to Formulas, Name Manager. Look for old links to dead workbooks & delete.
Not that I know of, but you can fake it by using a custom left footer. You are limited to 255 characters.
 
Upvote 0
Thanx anyway Barry, I didn't think there was.
I've got too many characters to fake it.
Oh well back to the drawing board!
 
Upvote 0
Hello Moonie:

You might try creating gif or jpg (or any picture file) with the text or info you want, adjusting the height of the gif file with the gif editor to suit your needs. Then inserting the picture file in the footer or header of your file (on Excel 2002 anyway). Then adjusting the position of the footer (distance from the bottom of the page) in the print set up section. I have not tried it but its work a try.


plettieri
 
Upvote 0
Just to maintain the never-say-die spirit :) I offer a tedious solution:

1. Define the Print_Area, select and paste values to a new sheet.
2. Set Headers, Footers etc for the new sheet.
3. Add a macro to insert the required repeating rows after every n rows.
 
Upvote 0
...or, just set rows at the top to print your text at the top of each sheet, and hand them out upside down. :devilish:
 
Upvote 0
I have one more suggestion:

Assume that your data to be printed is in Sheet1, beginning with A1

Assume that your repeating text for the bottom of each page is named `Footer1'

Assume that you want 20 rows of data in Sheet1 to be printed on every page.

In Sheet2, this formula can be entered in cell A1

=IF(MOD(ROW(Sheet1!A1),21)=0,Footer1,INDIRECT(ADDRESS(ROW()-INT(ROW()/20),1,,,"Sheet1")))

and copied down.

Note:
replace Footer1 and 21/20 with actual requirement.

formula can be copied across columns, with Footer1 replaced with something appropriate like - "", or other named range

formula to be modified, if there is more than one repeating row.

page breaks to be inserted every 21st(actual) row. This can be done by a simple macro.
 
Upvote 0

Forum statistics

Threads
1,215,096
Messages
6,123,074
Members
449,093
Latest member
ripvw

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