page numbering of worksheet

J

Joe

I have a form in a worksheet - I want to print multiple copies with page 1 on
the first, Page 2 on the second, etc, etc.

How can I do that?
 
F

FSt1

hi
2003 on the menu bar.....
file>page setup>header/footer tab.....
choose where you want it to be and in the appropriate input box enter....
Page &[Page]

there is an icon that will put the &[Page] part in but you must type in the
word page otherwise your printouts will look like 1,2,3.... instead of page
1, page 2, page 3 etc.

regards
FSt1
 
J

Jacob Skaria

Dear Joe

The below macro will print the same page 10 times with different page
numbers in the right footer. If you are new to macros set the Security level
to low/medium in (Tools|Macro|Security). Launch VBE using short-key Alt+F11.
Insert a module and paste the below code. Save. Get back to Workbook.
Tools|Macro|Run this Macro.
Try and feedback. I havent tested this..

Sub PrintSheet()
Dim lngTemp As Long
For lngTemp = 1 To 10
ActiveSheet.PageSetup.RightFooter = "Page " & lngTemp
ActiveSheet.PrintOut
Next
End Sub

If this post helps click Yes
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top