Syntax

expression.DataField

expression A variable that represents a PivotCell object.

Remarks

This property will return an error if the PivotCell object is not one of the allowed constants of : xlPivotCellTypeDataField, xlPivotCellTypeSubtotal, or xlPivotCellTypeGrandTotal.

Example

This example determines if cell L10 is in the data field of the PivotTable and either returns the PivotTable field that corresponds to the cell by notifying the user, or handles the run-time error. The example assumes a PivotTable exists in the active worksheet.

Visual Basic for Applications
Sub CheckDataField() On Error GoTo Not_In_DataField MsgBox Application.Range("L10").PivotCell.DataField Exit Sub Not_In_DataField: MsgBox "The selected range is not in the data field of the PivotTable." End Sub
data data field DataField datafield property

See also: