Omitting Page Numbers on Some Pages

Written by Allen Wyatt (last updated July 15, 2025)
This tip applies to Excel 2007, 2010, 2013, 2016, 2019, and 2021


1

Roger wonders how he can add page numbers to all pages of a worksheet except the first four. He doesn't want to have to split the worksheet into two.

Excel allows you to specify, in the header or footer, page numbers for whatever you print out. However, that is about it—Excel doesn't allow you to specify different headers or footers for different pages, as you can with Word.

So, the solution is to simply perform your printing in two passes. You would set your footer (without page numbers) and then print pages 1-4. Then, modify the footer (remove the page numbers) and print starting with page 5.

Of course, doing this each time you want to print could become tedious. It would be easier to make the changes and do the printing using a macro. Here's one that can do it for you:

Sub SpecialPrint1()
    ActiveSheet.PageSetup.CenterFooter = ""
    ActiveWindow.SelectedSheets.PrintOut From:=1, To:=4

    ActiveSheet.PageSetup.CenterFooter = "Page &P"
    ActiveWindow.SelectedSheets.PrintOut From:=5

    ActiveSheet.PageSetup.CenterFooter = ""
End Sub

This macro essentially automates the manual process already mentioned. There are two print passes done in the macro; you can identify these by the use of the .PrintOut method. The first pass prints pages 1-4 and the second prints from page 5 onward.

Before each print pass, the macro sets the center portion of the footer (using the .CenterFooter property) to whatever is appropriate for that pass. You can change which portion of the header or footer is modified simply by changing the references to the .CenterFooter property to whatever is appropriate: .LeftHeader, .CenterHeader, .RightHeader, .LeftFooter, .CenterFooter, or .RightFooter.

Note that the macro assumes that you want page 5 to have the page number printed as 5. If, instead, you want the page number printed as 1 in the second pass, then you should modify the macro just a bit so that it specifies a different start page number for the second print pass:

Sub SpecialPrint2()
    ActiveSheet.PageSetup.CenterFooter = ""
    ActiveWindow.SelectedSheets.PrintOut From:=1, To:=4

    ActiveSheet.PageSetup.CenterFooter = "Page &P"
    ActiveSheet.PageSetup.FirstPageNumber = -3
    ActiveWindow.SelectedSheets.PrintOut From:=5

    ActiveSheet.PageSetup.CenterFooter = ""
    ActiveSheet.PageSetup.FirstPageNumber = xlAutomatic
End Sub

By setting the .FirstPageNumber property to -3, this means that Excel will treat pages 1-4 as -3, -2, -1, and 0, with page 5 being treated as page 1.

Note:

If you would like to know how to use the macros described on this page (or on any other page on the ExcelTips sites), I've prepared a special page that includes helpful information. Click here to open that special page in a new browser tab.

ExcelTips is your source for cost-effective Microsoft Excel training. This tip (13822) applies to Microsoft Excel 2007, 2010, 2013, 2016, 2019, and 2021.

Author Bio

Allen Wyatt

With more than 50 non-fiction books and numerous magazine articles to his credit, Allen Wyatt is an internationally recognized author. He is president of Sharon Parq Associates, a computer and publishing services company. ...

MORE FROM ALLEN

Searching and Replacing Graphics

Got a bunch of graphics in a document that need replacing? (Perhaps you need to replace an old logo with a new one.) Word ...

Discover More

Using Duplex Printing

Want to print on both sides of a piece of paper? Some printers have the capability to do two-sided printing ...

Discover More

Counting Commas in a Selection

If you have a range of cells in which you want to count all the commas, there are several ways you can derive the figure ...

Discover More

Create Custom Apps with VBA! Discover how to extend the capabilities of Office 365 applications with VBA programming. Written in clear terms and understandable language, the book includes systematic tutorials and contains both intermediate and advanced content for experienced VB developers. Designed to be comprehensive, the book addresses not just one Office application, but the entire Office suite. Check out Mastering VBA for Microsoft Office 365 today!

More ExcelTips (ribbon)

Printing a Range of Pages

If your worksheet, when printed, requires more than a single page to print, you may want to only print a range of the ...

Discover More

Using Duplex Printing

Need to print on both sides of a piece of paper? If your printer can handle it, you can duplex your output from within ...

Discover More

Fitting Your Printout on a Page

Tired of wasting paper when you print a worksheet? You can scale Excel's output so that it fits only the number of pages ...

Discover More
Subscribe

FREE SERVICE: Get tips like this every week in ExcelTips, a free productivity newsletter. Enter your address and click "Subscribe."

View most recent newsletter.

Comments

If you would like to add an image to your comment (not an avatar, but an image to help in making the point of your comment), include the characters [{fig}] (all 7 characters, in the sequence shown) in your comment text. You’ll be prompted to upload your image when you submit the comment. Maximum image size is 6Mpixels. Images larger than 600px wide or 1000px tall will be reduced. Up to three images may be included in a comment. All images are subject to review. Commenting privileges may be curtailed if inappropriate images are posted.

What is seven more than 1?

2021-02-14 07:21:56

Roger Law

Thank you for the solution to my problem of printing no page numbers on the first four pages of my worksheet. I would never have worked that out for myself.
thank you again,
keep safe,
Roger Law.


This Site

Got a version of Excel that uses the ribbon interface (Excel 2007 or later)? This site is for you! If you use an earlier version of Excel, visit our ExcelTips site focusing on the menu interface.

Newest Tips
Subscribe

FREE SERVICE: Get tips like this every week in ExcelTips, a free productivity newsletter. Enter your address and click "Subscribe."

(Your e-mail address is not shared with anyone, ever.)

View the most recent newsletter.