PivotTable.AddFields Method (Excel)

Adds row, column, and page fields to a PivotTable report or PivotChart report.

Syntax

.AddFields(RowFields, ColumnFields, PageFields, AddToTable)

A variable that represents a PivotTable object.

Parameters

Name

Required/Optional

Data Type

Description

RowFields

선택

Variant

Specifies a field name (or an array of field names) to be added as rows, or to be added to the category axis.

ColumnFields

선택

Variant

Specifies a field name (or an array of field names) to be added as columns, or to be added to the series axis.

PageFields

선택

Variant

Specifies a field name (or an array of field names) to be added as pages, or to be added to the page area.

AddToTable

선택

Variant

Applies only to PivotTable reports. True to add the specified fields to the report (none of the existing fields are replaced). False to replace existing fields with the new fields. The default value is False.

Return Value

Variant

Remarks

You must specify one of the field arguments.

Field names specify the unique name returned by the SourceName property of the PivotField object.

This method is not available for OLAP data sources.

Example

This example replaces the existing column fields in the first PivotTable report on Sheet1 with the Status and Closed_By fields.

Worksheets("Sheet1").PivotTables(1).AddFields _ 
 ColumnFields:=Array("Status", "Closed_By")

참고 항목

개념

PivotTable Object Members

PivotTable Object