ParentField Property

Applies To

PivotField Object.

Description

Accessor. Returns a PivotField object that represents the pivot field that is the group parent of the object. The field must be grouped and have a parent field. Read-only.

Example

This example displays the name of the field that is the group parent of the field that contains the active cell.


Worksheets("Sheet1").Activate
MsgBox "The active field is a child of the field " & _
    ActiveCell.PivotField.ParentField.Name