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