Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 12
Default Print rows at end of pages

I have a worksheet that will will range from one to 10 pages. I have a
signature block that the data uses 11 rows. Can I make the signature block
print only on the last page. The signature block will be required to be at
the bottom of the page. This will need to auto add rows or delete emty rows
to be at the bottom.
  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 3,290
Default Print rows at end of pages


It is not clear what you want to do.
If you want to only print the block once below all the other pages then,
just copy the block and paste it below the data and print.
If you want something else please post again with more detail.
--
Jim Cone
San Francisco, USA
http://www.realezsites.com/bus/primitivesoftware
(Excel Add-ins - free 3 week trial for "Rows to Repeat at Bottom")


"fyrefox"
wrote in message
I have a worksheet that will will range from one to 10 pages. I have a
signature block that the data uses 11 rows. Can I make the signature block
print only on the last page. The signature block will be required to be at
the bottom of the page. This will need to auto add rows or delete emty rows
to be at the bottom.
  #3   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 22,906
Default Print rows at end of pages

I would suggest taking a picure of the block, paste it to MS Paint or similar
editing program.

Select the 11 row range and SHIFT + EditCopy Picture< Checkmark "as shown on
screen" and "As Picture".

Paste it to the graphics editing program.

Save As a *.jpg

Add this to the Footer.

To have it print only on last page would require two print jobs or adapt the
code found at Ron de Bruin's site.

http://www.rondebruin.nl/print.htm#not

Here is some adapted code to print your graphic on last page only, no matter how
many pages are to be printed..

Sub Footer_Last_Page()
Dim TotPages As Long
ActiveSheet.PageSetup.CenterFooterPicture.Filename = _
"C:\Documents and Settings\Gord\My Documents\My Pictures\untitled.jpg"
TotPages = Application.ExecuteExcel4Macro("GET.DOCUMENT(50)")
With ActiveSheet.PageSetup
.CenterFooter = ""
ActiveSheet.PrintOut From:=1, to:=TotPages - 1
.CenterFooter = "&G"
ActiveSheet.PrintOut From:=TotPages, to:=TotPages
End With
End Sub


Gord Dibben MS Excel MVP

On Sun, 3 Feb 2008 10:18:34 -0800, "Jim Cone" wrote:

It is not clear what you want to do.
If you want to only print the block once below all the other pages then,
just copy the block and paste it below the data and print.
If you want something else please post again with more detail.
--
Jim Cone
San Francisco, USA
http://www.realezsites.com/bus/primitivesoftware
(Excel Add-ins - free 3 week trial for "Rows to Repeat at Bottom")


"fyrefox"
wrote in message
I have a worksheet that will will range from one to 10 pages. I have a
signature block that the data uses 11 rows. Can I make the signature block
print only on the last page. The signature block will be required to be at
the bottom of the page. This will need to auto add rows or delete emty rows
to be at the bottom.


  #4   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 12
Default Print rows at end of pages

My information that I want to use as a footer is on a page in the same
workbook (Data Sheet L2:S12) This information is pulled from other parts of
the same worbook as well so a JPG will not work as this information will
change for every report.

What I need to accomplish is similar to the rows to repeat at top except I
only want it to print on the last page at the bottom.

"Gord Dibben" wrote:

I would suggest taking a picure of the block, paste it to MS Paint or similar
editing program.

Select the 11 row range and SHIFT + EditCopy Picture< Checkmark "as shown on
screen" and "As Picture".

Paste it to the graphics editing program.

Save As a *.jpg

Add this to the Footer.

To have it print only on last page would require two print jobs or adapt the
code found at Ron de Bruin's site.

http://www.rondebruin.nl/print.htm#not

Here is some adapted code to print your graphic on last page only, no matter how
many pages are to be printed..

Sub Footer_Last_Page()
Dim TotPages As Long
ActiveSheet.PageSetup.CenterFooterPicture.Filename = _
"C:\Documents and Settings\Gord\My Documents\My Pictures\untitled.jpg"
TotPages = Application.ExecuteExcel4Macro("GET.DOCUMENT(50)")
With ActiveSheet.PageSetup
.CenterFooter = ""
ActiveSheet.PrintOut From:=1, to:=TotPages - 1
.CenterFooter = "&G"
ActiveSheet.PrintOut From:=TotPages, to:=TotPages
End With
End Sub


Gord Dibben MS Excel MVP

On Sun, 3 Feb 2008 10:18:34 -0800, "Jim Cone" wrote:

It is not clear what you want to do.
If you want to only print the block once below all the other pages then,
just copy the block and paste it below the data and print.
If you want something else please post again with more detail.
--
Jim Cone
San Francisco, USA
http://www.realezsites.com/bus/primitivesoftware
(Excel Add-ins - free 3 week trial for "Rows to Repeat at Bottom")


"fyrefox"
wrote in message
I have a worksheet that will will range from one to 10 pages. I have a
signature block that the data uses 11 rows. Can I make the signature block
print only on the last page. The signature block will be required to be at
the bottom of the page. This will need to auto add rows or delete emty rows
to be at the bottom.



  #5   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 22,906
Default Print rows at end of pages

Excel has no "rows to repear at bottom" feature.

Did you see Jim's reply?

Perhaps his add-in would be best for your needs.


Gord

On Sun, 3 Feb 2008 21:26:00 -0800, fyrefox
wrote:

My information that I want to use as a footer is on a page in the same
workbook (Data Sheet L2:S12) This information is pulled from other parts of
the same worbook as well so a JPG will not work as this information will
change for every report.

What I need to accomplish is similar to the rows to repeat at top except I
only want it to print on the last page at the bottom.

"Gord Dibben" wrote:

I would suggest taking a picure of the block, paste it to MS Paint or similar
editing program.

Select the 11 row range and SHIFT + EditCopy Picture< Checkmark "as shown on
screen" and "As Picture".

Paste it to the graphics editing program.

Save As a *.jpg

Add this to the Footer.

To have it print only on last page would require two print jobs or adapt the
code found at Ron de Bruin's site.

http://www.rondebruin.nl/print.htm#not

Here is some adapted code to print your graphic on last page only, no matter how
many pages are to be printed..

Sub Footer_Last_Page()
Dim TotPages As Long
ActiveSheet.PageSetup.CenterFooterPicture.Filename = _
"C:\Documents and Settings\Gord\My Documents\My Pictures\untitled.jpg"
TotPages = Application.ExecuteExcel4Macro("GET.DOCUMENT(50)")
With ActiveSheet.PageSetup
.CenterFooter = ""
ActiveSheet.PrintOut From:=1, to:=TotPages - 1
.CenterFooter = "&G"
ActiveSheet.PrintOut From:=TotPages, to:=TotPages
End With
End Sub


Gord Dibben MS Excel MVP

On Sun, 3 Feb 2008 10:18:34 -0800, "Jim Cone" wrote:

It is not clear what you want to do.
If you want to only print the block once below all the other pages then,
just copy the block and paste it below the data and print.
If you want something else please post again with more detail.
--
Jim Cone
San Francisco, USA
http://www.realezsites.com/bus/primitivesoftware
(Excel Add-ins - free 3 week trial for "Rows to Repeat at Bottom")


"fyrefox"
wrote in message
I have a worksheet that will will range from one to 10 pages. I have a
signature block that the data uses 11 rows. Can I make the signature block
print only on the last page. The signature block will be required to be at
the bottom of the page. This will need to auto add rows or delete emty rows
to be at the bottom.




Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Change print titles (rows to repeat at top) on subsequent pages Eric Excel Discussion (Misc queries) 3 April 4th 23 10:12 AM
Print Area ranges print on separate pages? Lyndon Excel Discussion (Misc queries) 1 December 29th 06 05:22 PM
How to print odd pages and even pages seperately in Excel. DILNAVAS Excel Discussion (Misc queries) 1 June 14th 06 11:45 AM
How can I get the 1st 2 rows on my document to print on all pages j_a_barr Excel Discussion (Misc queries) 1 February 24th 06 01:39 PM
Print few rows with many colums so that rows wrap on printed pages usfgradstudent31 Excel Discussion (Misc queries) 1 October 20th 05 02:39 PM


All times are GMT +1. The time now is 06:51 AM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"