Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 2
Default is it possible to progresively number multiple copies

Is it possible to print multiple copies of a worksheet with a progressive
page number on each copy
  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 35,218
Default is it possible to progresively number multiple copies

If you have the page number in a worksheet cell, you could provide a macro that
increments that cell and prints the page:

Option Explicit
sub testme()
dim iCtr as long
with worksheets("sheet1")
for iCtr = 1 to 10
.range("a1").value = ictr
.printout preview:=true
next ictr
end with
end sub

I used A1 and did a print preview to save paper.

If you're new to macros, you may want to read David McRitchie's intro at:
http://www.mvps.org/dmcritchie/excel/getstarted.htm

Sdorph wrote:

Is it possible to print multiple copies of a worksheet with a progressive
page number on each copy


--

Dave Peterson
  #3   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 22,906
Default is it possible to progresively number multiple copies

Or without a page number in a cell.

Sub PrintCopies()
Dim i As Long
For i = 1 To 3
With ActiveSheet
.PageSetup.LeftFooter = "Page " & i
.PrintOut preview:=True
'.Printout
End With
Next
End Sub


Gord Dibben MS Excel MVP

On Mon, 18 Sep 2006 21:15:02 -0700, Sdorph
wrote:

Is it possible to print multiple copies of a worksheet with a progressive
page number on each copy


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
make multiple copies of a sheet in a new workbook galeanne Excel Worksheet Functions 4 April 9th 23 12:50 PM
how to multiple the rows by a given number xianwinwin Excel Discussion (Misc queries) 2 June 9th 06 08:31 PM
Return SEARCHED Column Number of Numeric Label and Value Sam via OfficeKB.com Excel Worksheet Functions 23 January 30th 06 06:16 PM
multiple copies of same workbook Bongo62 Excel Discussion (Misc queries) 2 April 29th 05 01:04 AM
Rounding a number to a multiple quantity that adds to a fixed total number wjlo Excel Worksheet Functions 1 November 9th 04 04:43 PM


All times are GMT +1. The time now is 04:27 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"