Specifying the Y Value in X of Y Page Numbering

Written by Allen Wyatt (last updated April 22, 2023)
This tip applies to Excel 2007, 2010, 2013, 2016, 2019, 2021, and Excel in Microsoft 365


1

Dawn has workbooks with multiple tabs (worksheets) in them. She uses "Page of Pages" (X of Y) numbering in the page footers. She notes that she used to be able to print entire workbooks at once and have the numbering come out correctly, with the Y value being the number of pages in each worksheet. Since upgrading to Excel 2016, the Y value on her printouts is always the total number of pages in the workbook, not the number of pages in each worksheet. She wonders if there is a setting in Excel that determines how the Y value is counted (per worksheet or per workbook).

There is no setting that we've been able to locate. Instead, it appears that Excel determines both the X and Y values based on the current print job, not on worksheets or the entire workbook. In other words, if your workbook contains three worksheets, and you print all three, the X and Y values will be different than if you choose to print only the second or the second and third worksheets.

The solution to this is to use a small, simple macro that steps through all the worksheets in a workbook and prints the worksheets individually. As far as Excel is concerned, then, you are performing multiple print jobs, thus the Y value will get reset on a worksheet-by-worksheet basis. Here's the macro:

Sub PrintProperly()
    Dim sht As Worksheet
    For Each sht In ActiveWorkbook.Worksheets
        sht.PrintOut copies:=1
    Next sht
End Sub

Assign the macro to a shortcut key or to a button on the Quick Access Toolbar, and you'll be able to invoke it easier.

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 (12454) applies to Microsoft Excel 2007, 2010, 2013, 2016, 2019, 2021, and Excel in Microsoft 365.

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

Printing Rows Conditionally

Need to only print out certain rows from your data? It's easy to do if you apply the filtering or sorting techniques ...

Discover More

Can Only Print to Default Printer

It is helpful to be able to print out worksheets when you need to share them with others. It is even more helpful if you ...

Discover More

Duplex by Default

Many printers these days have the capability to print on both sides of a piece of paper. You may want Word to use this ...

Discover More

Excel Smarts for Beginners! Featuring the friendly and trusted For Dummies style, this popular guide shows beginners how to get up and running with Excel while also helping more experienced users get comfortable with the newest features. Check out Excel 2019 For Dummies today!

More ExcelTips (ribbon)

Using a Custom Date Format in a Header or Footer

Need to show a custom date in the header or footer of a printout? You'll need to resort to using a macro, as described in ...

Discover More

Adding Ampersands in Headers and Footers

Add an ampersand to the text in a header or footer and you may be surprised that the ampersand disappears on your ...

Discover More

Copying Headers or Footers within a Workbook

If you want to copy headers or footers from one worksheet to another, it is a relatively easy process, as described in ...

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 1 + 8?

2023-04-22 20:57:36

Tomek

You just have to remember that certain print attributes are defined per each worksheet. This applies to headers and footers.
On a positive note, you can define headers and footers for several sheets at once, just make sure they are all selected before defining the header/footer. that way they will be consistent.


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.