Displaying a PivotTable's Name in the PivotTable

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


David wonders if there is a way to display a PivotTable's name within the PivotTable itself.

The short answer is that there is no way to do this automatically. The longer answer is that you can "cheat" and force a name into the PivotTable. For instance, you could select the row label cell in the PivotTable and edit it (F2), replacing whatever is there with whatever name you want to type. This is far from automatic, and when you refresh the PivotTable, you'll need to remember to edit the cell again.

Another way to force a name into the PivotTable is to use a macro. There are probably a few approaches you could take in your macro. One approach is to create a data table on which your PivotTable will be based. Give the data table a heading, in the first column. (Any old text for the heading will do, as the macro will overwrite it.)

After you create your PivotTable, run the following macro. It determines the name of the PivotTable, stuffs it into the heading of the data table, refreshes the PivotTable (so the name appears there), and then updates the name of the PivotTable report filter so it is the same as the PivotTable name.

Sub GetPVName()
    Dim pvt As PivotTable
    Dim PVName As String

    ' Get the PivotTable name from the ActiveSheet
    ' If there are multiple PivotTables, this approach
    ' ensures the macro will work with the last PivotTable
    ' in the PivotTables collection
    For Each pvt In ActiveSheet.PivotTables
        PVName = pvt.Name
    Next pvt

    ' Put PivotTable name as a heading for the first
    ' column of the data table
    Range("Table1").Cells(0, 1) = PVName

    ' Refresh the PivotTable
    ActiveSheet.PivotTables(PVName).PivotCache.Refresh

    ' Set the PivotTable name in the report filter
    With ActiveSheet.PivotTables(PVName).PivotFields(PVName)
        .Orientation = xlPageField
        .Position = 1
    End With
End Sub

ExcelTips is your source for cost-effective Microsoft Excel training. This tip (3233) 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

Selecting a Paper Size

Excel can print your worksheet on just about any paper size you can imagine. How you select the paper size you want used ...

Discover More

Disabling Dragging and Dropping

Excel allows you to easily paste information into a worksheet, including through simply dragging and dropping the ...

Discover More

Spelling Out Page Numbers

If your document is more than a couple of pages long, adding page numbers is a nice finishing touch. If you want, you can ...

Discover More

Best-Selling VBA Tutorial for Beginners Take your Excel knowledge to the next level. With a little background in VBA programming, you can go well beyond basic spreadsheets and functions. Use macros to reduce errors, save time, and integrate with other Microsoft applications. Fully updated for the latest version of Office 365. Check out Microsoft 365 Excel VBA Programming For Dummies today!

More ExcelTips (ribbon)

Pointing PivotTables to Different Data

Changing the data source PivotTables go to can be a bit tricky. This tip explains what can happen when you re-point your ...

Discover More

Using Classic PivotTable Layout as the Default

Are you attached to the classic PivotTable layout? Looking for a way to make that layout the default for new PivotTables? ...

Discover More

Maintaining Formatting when Refreshing PivotTables

When you refresh the data in a PivotTable, Excel can play havoc with whatever formatting you applied. Here's how to ...

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 two minus 0?

There are currently no comments for this tip. (Be the first to leave your comment—just use the simple form above!)


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.