Page Numbering in Footer

JontyHS527

New Member
Joined
Apr 6, 2009
Messages
1
I have a 17-page excel sheet which I've been asked to page number including a section number. As well, instead of starting at page 1, to start as page 3. Refer example below:

1.3 - 1.19

How can this be achieved, if at all, in Excel 2003? I know this would be a snap in Word, but have no idea how to do this in Excel.
 

Excel Facts

Formula for Yesterday
Name Manager, New Name. Yesterday =TODAY()-1. OK. Then, use =YESTERDAY in any cell. Tomorrow could be =TODAY()+1.
have you tryed the page setup in the file menu of excel? or are you looking for another way?
 
Upvote 0
Sub anothertry() 'This is the Best Way
With ActiveSheet.PageSetup
.LeftFooter = "1. &P"
.Firstpagenumber = 1 + 2
End With
Worksheets("Sheet1").PrintPreview
End Sub
 
Upvote 0

Forum statistics

Threads
1,220,965
Messages
6,157,119
Members
451,398
Latest member
rjsteward

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top