ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Worksheet Functions (https://www.excelbanter.com/excel-worksheet-functions/)
-   -   page numbering of worksheet (https://www.excelbanter.com/excel-worksheet-functions/230383-page-numbering-worksheet.html)

Joe

page numbering of worksheet
 
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?

FSt1

page numbering of worksheet
 
hi
2003 on the menu bar.....
filepage setupheader/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

"Joe" wrote:

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?


Jacob Skaria

page numbering of worksheet
 
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
---------------
Jacob Skaria


"Joe" wrote:

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?



All times are GMT +1. The time now is 11:14 AM.

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