A family of Microsoft spreadsheet software with tools for analyzing, charting, and communicating data.
Hello Paul Steel,
Thank you for reaching out in Microsoft Q&A forum
I understand you’re trying to enable the Edit Default Layout option for PivotTables in Office 2019, but the button is currently disabled.
The “Edit Default Layout” feature is not available in Office 2019 (perpetual). This option only appears in Microsoft 365 and Excel 2019/2021 after Microsoft pushed a feature update to subscription users — not to perpetual-license Office 2019. That’s why you can see online guides mentioning the feature, but the button in your Excel 2019 is greyed out.
Even though you cannot use the “Edit Default Layout” button, you still have these options:
- Manually change layout per PivotTable
- Select your PivotTable
- Go to Design → Report Layout → Show in Tabular Form
- Set Subtotals → Do Not Show Subtotals
- Choose Repeat All Item Labels (if needed)
- If you want classic/tabular layout every time, you can use a small macro:
This doesn’t change the default, but it saves time.Sub PivotTableClassic()Sub Pivot Dim pt As PivotTable For Each pt In ActiveSheet.PivotTables pt.InGridDropZones = True pt.RowAxisLayout xlTabularRow Next pt - If you want the full “Edit Default Layout” feature: You would need Microsoft 365 or Excel 2021 with current updates, as those versions receive ongoing feature additions, including the Default Layout editor.
If the answer is helpful, please click "Accept Answer" and kindly upvote it. If you have extra questions about this answer, please click "Comment".
Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.