Using Classic PivotTable Layout as the Default

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


1

Nancy creates a lot of PivotTables and likes the old layout better than the default set up in Excel 2010 and later versions. Every time she creates a PivotTable she has to go to PivotTableOptions | Display | Classic PivotTable Layout. Nancy wonders if there is a way she can make the classic display the default.

For most versions of Excel there is no way to set this default, but it is possible to make the process a bit less painful. I created a PivotTable and left it empty, with nothing defined in the various sections of the PivotTable. With the PivotTable sheet visible, I turned on the macro recorder and recorded just the steps that Nancy mentioned, above. Here's what was recorded:

Sub Macro1()
'
' Macro1 Macro
'

'
    With ActiveSheet.PivotTables("PivotTable1")
        .InGridDropZones = True
        .RowAxisLayout xlTabularRow
    End With
End Sub

As you can see, there isn't much (programmatically) to changing back to classic layout—all you need to do is issue two statements that affect the PivotTable. This macro can be improved just a bit, however, by making it more "universal."

Sub PivotTableClassic()
    Dim pt As PivotTable

    For Each pt In ActiveSheet.PivotTables
        pt.InGridDropZones = True
        pt.RowAxisLayout xlTabularRow
    Next pt
End Sub

This version of the macro steps through each of the PivotTables on the current worksheet (if any) and applies those two statements that set them to classic layout.

The best idea we've been able to come up with is to assign this macro to the Quick Access Toolbar or to a shortcut key. Immediately after creating the macro, you can click the QAT button or press the shortcut key and Excel makes all the PivotTables on the sheet classic.

Notice, just a bit earlier that I said "for most versions of Excel" that you couldn't set the default. In late 2017 or early 2018, Microsoft actually added a way that you can set the default. This ability was "pushed out" to those who subscribe to Microsoft 365. This means that it is available to not just those using Microsoft 365, but to those using Excel 2019 and Excel 2021.

To see if you can set this default, start by displaying the File tab of the ribbon, and then click on Options. This displays, of course, the Excel Options dialog box. (See Figure 1.)

Figure 1. The Excel Options dialog box.

Notice that near the upper-right corner of the dialog box there is a Data option. This option isn't available on all versions of Excel; it was the option added in that update that I mentioned.

Assuming your version of Excel has that option available, follow these steps from this point:

  1. Click the Data option. Excel changes what is displayed in the Excel Options dialog box.
  2. Click the Edit Default Layout button. Excel displays the Edit Default Layout dialog box.
  3. Click the PivotTable Options button. Excel displays the PivotTable Options dialog box.
  4. Make sure the Display tab is selected. (See Figure 2.)
  5. Figure 2. The Display tab of the PivotTable Options dialog box.

  6. Click the Classic PivotTable Layout check box.
  7. Click OK to dismiss the PivotTable Options dialog box.
  8. Click Cancel to dismiss the Edit Default Layout dialog box.
  9. Click Cancel to dismiss the Excel Options dialog box.

You are now set—classic design layout will be the default as you create your new PivotTables. It won't affect any PivotTables previously created, but at least you are good to go from here on out.

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

Using the Highlighter

Need to draw attention to some text? Consider using the Highlight tool, which functions just like the highlighter pens ...

Discover More

Changing Sort Order

When sorting information, Word follows some pretty strict rules. If you want to modify how those rules are applied, you ...

Discover More

Sorting Letters and Numbers

Sorting information in a worksheet can be confusing when Excel applies sorting rules of which you are unaware. This is ...

Discover More

Professional Development Guidance! Four world-class developers offer start-to-finish guidance for building powerful, robust, and secure applications with Excel. The authors show how to consistently make the right design decisions and make the most of Excel's powerful features. Check out Professional Excel Development today!

More ExcelTips (ribbon)

Expanding PivotTable Rows to Sheets

PivotTables are a great way to work with large quantities of data in an intelligent manner. Sometimes, however, you just ...

Discover More

Turning Off Automatic Sorting in PivotTables

Tired of your data being sorted when you create a PivotTable? Excel allows you to specify how the sorting should occur by ...

Discover More

Editing PivotTables without Underlying Data

If you ever try to edit a PivotTable and get an error that tells you that the "underlying data was not included," it can ...

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 more than 7?

2024-08-03 11:15:16

Brian Lair

Thanks for this great tip. Like Nancy, I much prefer the Classic layout, so this will save me some time & aggravation.


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.