PivotItemList Object

Excel Developer Reference

A collection of all the PivotItem objects in the specified PivotTable.

Remarks

Each PivotItem represents an item in a PivotTable field.

Use the RowItems or ColumnItems property of the PivotCell object to return a PivotItemList collection.

Example

Once a PivotItemList collection is returned, you can use the Item method to identify a particular PivotItem list. The following example displays the PivotItem list associated with cell B5 to the user. This example assumes a PivotTable exists on the active worksheet.

Visual Basic for Applications
  Sub CheckPivotItemList()
' Identify contents associated with PivotItemList.
MsgBox "Contents associated with cell B5: " & _
    Application.Range("B5").PivotCell.RowItems.Item(1)

End Sub

See Also