title | keywords | f1_keywords | api_name | ms.assetid | ms.date | ms.localizationpriority | ||
---|---|---|---|---|---|---|---|---|
PivotItem.ParentItem property (Excel) |
vbaxl10.chm246079 |
|
|
7d0959e5-5abc-c84f-7037-19b761f36294 |
05/07/2019 |
medium |
Returns a PivotItem object that represents the parent PivotTable item in the parent PivotField object (the field must be grouped so that it has a parent). Read-only.
expression.ParentItem
expression A variable that represents a PivotItem object.
This property isn't available for OLAP data sources.
This example displays the name of the parent item for the item that contains the active cell.
Worksheets("Sheet1").Activate
MsgBox "This item is a subitem of " & _
ActiveCell.PivotItem.ParentItem.Name
[!includeSupport and feedback]