Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 22,906
Default Consecutive print numbers

From Ron de Bruin.......................

Sub PrintCopies_ActiveSheet_1()
Dim CopiesCount As Long
Dim CopieNumber As Long
CopiesCount = Application.InputBox("How many copies do you want", _
Type:=1)

For CopieNumber = 1 To CopiesCount
With ActiveSheet
' This example print the number in cell A1
.Range("A1").Value = CopieNumber & " of " & CopiesCount

'If you want the number in the footer use this line
'.PageSetup.LeftFooter = CopieNumber & " of " & CopiesCount

'Print the sheet
.PrintOut
End With
Next CopieNumber
End Sub


Gord Dibben MS Excel MVP

On Thu, 2 Apr 2009 22:14:02 -0700, Lisa
wrote:



How can I print consecutive numbers on a print of the same doc...
Say I want to print 50 copies of the same doc and I want it to show on the
print out 1 of 50, 2 of 50, 3 of 50 etc etc...
Can this be done as a footer???


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
how do i print a page of consecutive numbers Ken Barrie Excel Discussion (Misc queries) 3 April 13th 07 12:28 AM
Print a single sheet in Excel with consecutive page numbers cmompoohu Excel Discussion (Misc queries) 1 November 1st 06 07:05 PM
In Excel, print non-consecutive columns. kwm5321 Excel Discussion (Misc queries) 1 May 3rd 06 06:33 PM
How do I in excel print consecutive numbers from one form? sjamdavies Excel Discussion (Misc queries) 1 March 8th 06 02:34 AM
How to print from consecutive numbers in excel w/o typing all? Need help in Excel Excel Worksheet Functions 1 November 11th 05 02:43 PM


All times are GMT +1. The time now is 12:41 PM.

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

About Us

"It's about Microsoft Excel"