ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Discussion (Misc queries) (https://www.excelbanter.com/excel-discussion-misc-queries/)
-   -   Can i print copy numbers? (https://www.excelbanter.com/excel-discussion-misc-queries/23479-can-i-print-copy-numbers.html)

Jill_Mac

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??

Dave Peterson

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


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

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
ExcelBanter.com