Skip to content

Latest commit

 

History

History
47 lines (30 loc) · 1000 Bytes

Excel.PivotField.DataRange.md

File metadata and controls

47 lines (30 loc) · 1000 Bytes
title keywords f1_keywords api_name ms.assetid ms.date ms.localizationpriority
PivotField.DataRange property (Excel)
vbaxl10.chm240078
vbaxl10.chm240078
Excel.PivotField.DataRange
14d5e4c4-1acb-aa02-6694-28e358afc881
05/04/2019
medium

PivotField.DataRange property (Excel)

Returns a Range object as shown in the following table. Read-only.

Syntax

expression.DataRange

expression A variable that represents a PivotField object.

Remarks

Object Data range
Data field Data contained in the field
Row, column, or page field Items in the field
Item Data qualified by the item

Example

This example selects the PivotTable items in the field named REGION.

Set pvtTable = Worksheets("Sheet1").Range("A3").PivotTable 
Worksheets("Sheet1").Activate 
pvtTable.PivotFields("REGION").DataRange.Select

[!includeSupport and feedback]