PageFieldOrder Property
Applies To
PivotTable object.
Description
Returns or sets the order in which page fields are added to the PivotTable layout. Can be one of the following XlOrder constants: xlDownThenOver or xlOverThenDown. The default constant is xlDownThenOver. Read/write Long.
See Also
PageFieldWrapCount property.
Example
This example causes the PivotTable to draw three page fields in a row before starting a new row.
With Worksheets(1).PivotTables("Pivot1")
.PageFieldOrder = xlOverThenDown
.PageFieldWrapCount = 3
End With