Remarks

Use the property of the collection to return a PivotCell object.

Once a PivotCell object is returned, you can use the or property to determine the collection that corresponds to the items on the column or row axis that represents the selected number. The following example uses the ColumnItems property of the PivotCell object to return a collection.

Example

Once a PivotCell object is returned, you can use the property to determine what type of cell a particular range is. The following example determines if cell A5 in the PivotTable is a data item and notifies the user. This example assumes that a PivotTable exists on the active worksheet and that cell A5 is contained in the PivotTable. If cell A5 is not in the PivotTable, the example handles the run-time error.

Visual Basic for Applications
Sub CheckPivotCellType() On Error GoTo Not_In_PivotTable ' Determine if cell A5 is a data item in the PivotTable. If Application.Range("A5").PivotCell.PivotCellType = xlPivotCellValue Then MsgBox "The PivotCell at A5 is a data item." Else MsgBox "The PivotCell at A5 is not a data item." End If Exit Sub Not_In_PivotTable: MsgBox "The chosen cell is not in a PivotTable." End Sub

This example determines the column field that the data item of cell B5 is in. It then determines if the column field title matches "Inventory" and notifies the user. The example assumes that a PivotTable exists on the active worksheet and that column B of the worksheet contains a column field of the PivotTable.

Visual Basic for Applications
Sub CheckColumnItems() ' Determine if there is a match between the item and column field. If Application.Range("B5").PivotCell.ColumnItems.Item(1) = "Inventory" Then MsgBox "Item in B5 is a member of the 'Inventory' column field." Else MsgBox "Item in B5 is not a member of the 'Inventory' column field." End If End Sub

See also: