Range.PivotField property (Excel)
Returns a PivotField object that represents the PivotTable field containing the upper-left corner of the specified range.
expression.PivotField
expression A variable that represents a Range object.
This example displays the name of the PivotTable field that contains the active cell.
Worksheets("Sheet1").Activate
MsgBox "The active cell is in the field " & _
ActiveCell.PivotField.Name
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.