Written by Allen Wyatt (last updated February 13, 2021)
This tip applies to Excel 2007, 2010, 2013, 2016, 2019, and Excel in Microsoft 365
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:
ExcelTips is your source for cost-effective Microsoft Excel training. This tip (13822) applies to Microsoft Excel 2007, 2010, 2013, 2016, 2019, and Excel in Microsoft 365.
Comprehensive VBA Guide Visual Basic for Applications (VBA) is the language used for writing macros in all Office programs. This complete guide shows both professionals and novices how to master VBA in order to customize the entire Office suite for their needs. Check out Mastering VBA for Office 2010 today!
If you use a worksheet to track data for multiple vendors, you may wonder if there is a way to print individual ...
Discover MoreWhen you share workbooks on a company server, it can be frustrating if the workbooks are downloaded to individual ...
Discover MoreGot a bunch of worksheets and you want to save paper by printing multiple worksheets on a single piece of paper? There ...
Discover MoreFREE SERVICE: Get tips like this every week in ExcelTips, a free productivity newsletter. Enter your address and click "Subscribe."
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.
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.
FREE SERVICE: Get tips like this every week in ExcelTips, a free productivity newsletter. Enter your address and click "Subscribe."
Copyright © 2024 Sharon Parq Associates, Inc.
Comments