PivotField.DragToData property (Excel)

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

Syntax

expression.DragToData

expression A variable that represents a PivotField object.

Remarks

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

Example

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

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

Support and feedback

Have questions or feedback about Office VBA or this documentation? Please see Office VBA support and feedback for guidance about the ways you can receive support and provide feedback.