Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Jill_Mac
 
Posts: n/a
Default Can i print copy numbers?

At my job we must print copies of databases and keep track of them. We only
print 100 copies at a time. Is there a way to make it automaticly put "1 of
100" or "copy 1 of 100" in the footer??
  #2   Report Post  
Dave Peterson
 
Posts: n/a
Default

You could run a little macro:

Option Explicit
Sub testme()
Dim iCtr As Long
For iCtr = 1 To 3 '100 when you're ready
With ActiveSheet
.PageSetup.RightFooter = "Copy " & iCtr & " of 100"
.PrintOut preview:=True 'false when you're ready
End With
Next iCtr
End Sub

I used 1 to 3 and printpreview to save paper. Adjust it when you're really
ready.

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



Jill_Mac wrote:

At my job we must print copies of databases and keep track of them. We only
print 100 copies at a time. Is there a way to make it automaticly put "1 of
100" or "copy 1 of 100" in the footer??


--

Dave Peterson
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 copy the print settings, including header and footer fro. bruce Excel Discussion (Misc queries) 4 May 26th 06 07:55 PM
How can i print sequential page numbers 1 to 10, if i have one wo. DJN822 Excel Discussion (Misc queries) 2 March 24th 05 04:41 AM
print tickets with incrementing numbers in Excel ? netwarbler Excel Worksheet Functions 3 February 22nd 05 11:27 PM
how do i print numbers using speach recognition in excel Speach Recognition & numbers Excel Discussion (Misc queries) 1 February 2nd 05 02:47 AM
How can I copy column sums to another spreadsheets as numbers auntpat Excel Worksheet Functions 3 January 3rd 05 06:49 PM


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