Pivot Table Default

J

JDebo

Is there any way to change the Default Pivot Table Options?
The Classic Pivot table is much easier to interpret.
 
R

Roger Govier

Hi

As far as I am aware, there is no setting where you can make this the
default.
The following code will change the layout. You could assign a shortcut key
to it, and use that to make the change after the PT was created.

Sub ClassicPT()
With ActiveSheet.PivotTables(1)
.InGridDropZones = True
.RowAxisLayout xlTabularRow
End With
End Sub
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top