DragToPage Property [Excel 2003 VBA Language Reference]

True if the field can be dragged to the page position. The default value is True. Read/write Boolean.

Remarks

For OLAP data sources, the value is False for measure fields.

Example

This example prevents the Year field in the PivotTable report on worksheet one from being dragged to the page position.

Worksheets(1).PivotTables("Pivot1") _
    .PivotFields("Year").DragToPage = False

Applies to | CubeField Object | PivotField Object

See Also | DragToColumn Property | DragToHide Property | DragToRow Property