A Microsoft Office (Excel, Word) forum. OfficeFrustration

If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

Go Back   Home » OfficeFrustration forum » Microsoft Excel » Worksheet Functions
Site Map Home Register Authors List Search Today's Posts Mark Forums Read  

how do you print single page multiply times with increasing page .



 
 
Thread Tools Display Modes
  #1  
Old September 25th, 2008, 10:21 PM posted to microsoft.public.excel.worksheet.functions
aliasmith
external usenet poster
 
Posts: 1
Default how do you print single page multiply times with increasing page .

How do you print a single page multiply times with increasing page numbers?
  #2  
Old September 25th, 2008, 10:29 PM posted to microsoft.public.excel.worksheet.functions
Sean Timmons
external usenet poster
 
Posts: 1,722
Default how do you print single page multiply times with increasing page .

Probably easiest by manually entering "Page" in a bottom cell, then do some
code on the back end.

For i = 1 to 20
Range("G40").Value = i
ActiveWindow.SelectedSheets.PrintOut From:=1, To:=1, Copies:=1, Collate
_:=True
Next i

assuming G40 is where you put the 1 and you want 20 pages.

"aliasmith" wrote:

How do you print a single page multiply times with increasing page numbers?

  #3  
Old September 26th, 2008, 12:30 AM posted to microsoft.public.excel.worksheet.functions
Gord Dibben
external usenet poster
 
Posts: 20,252
Default how do you print single page multiply times with increasing page .

See Ron de Bruin's site for code.

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


Gord Dibben MS Excel MVP

On Thu, 25 Sep 2008 14:21:02 -0700, aliasmith
wrote:

How do you print a single page multiply times with increasing page numbers?


 




Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Forum Jump


All times are GMT +1. The time now is 07:56 AM.


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