title | keywords | f1_keywords | api_name | ms.assetid | ms.date | ms.localizationpriority | ||
---|---|---|---|---|---|---|---|---|
PivotField.BaseItem property (Excel) |
vbaxl10.chm240096 |
|
|
11561507-043a-2b64-1b60-3cdbd93a656c |
05/04/2019 |
medium |
Returns or sets the item in the base field for a custom calculation. Valid only for data fields. Read/write Variant.
expression.BaseItem
expression A variable that represents a PivotField object.
This property is not available for OLAP data sources.
This example sets the data field in the PivotTable report on Sheet1 to calculate the difference from the base field, sets the base field to the field named ORDER_DATE, and then sets the base item to the item named 5/16/89.
With Worksheets("Sheet1").Range("A3").PivotField
.Calculation = xlDifferenceFrom
.BaseField = "ORDER_DATE"
.BaseItem = "5/16/89"
End With
[!includeSupport and feedback]