<location> (PivotTable Location)

Represents location information for the PivotTable.

example:
<location ref="B6:G13" firstHeaderRow="1" firstDataRow="4" firstDataCol="1"
  rowPageCount="3" colPageCount="1"/>

Parent Elements

<pivotTableDefinition>3.10.1.73)

Attributes

Description

<colPageCount> (Columns Per Page)

Specifies the number of columns per page for this PivotTable that the filter area will occupy. By default there is a single column of filter fields per page and the fields occupy as many rows as there are fields.

The possible values for this attribute are defined by the XML Schema unsignedInt datatype.

<firstDataCol> (First Data Column)

Specifies the first column of the PivotTable data, relative to the top left cell in the ref value.

The possible values for this attribute are defined by the XML Schema unsignedInt datatype.

<firstDataRow> (PivotTable Data First Row)

Specifies the first row of the PivotTable data, relative to the top left cell in the ref value.

The possible values for this attribute are defined by the XML Schema unsignedInt datatype.

<firstHeaderRow> (First Header Row)

Specifies the first row of the PivotTable header, relative to the top left cell in the ref value.

The possible values for this attribute are defined by the XML Schema unsignedInt datatype.

<ref> (Reference)

Specifies the first row of the PivotTable.

The possible values for this attribute are defined by the ST_Ref simple type (§3.18.64).

<rowPageCount> (Rows Per Page Count)

Specifies the number of rows per page for this PivotTable that the filter area will occupy. By default there is a single column of filter fields per page and the fields occupy as many rows as there are fields.

The possible values for this attribute are defined by the XML Schema unsignedInt datatype.

The following XML Schema fragment defines the contents of this element:

<complexType name="CT_Location">
	<attribute name="ref" use="required" type="ST_Ref"/>
	<attribute name="firstHeaderRow" use="required" type="xsd:unsignedInt"/>
	<attribute name="firstDataRow" use="required" type="xsd:unsignedInt"/>
	<attribute name="firstDataCol" use="required" type="xsd:unsignedInt"/>
	<attribute name="rowPageCount" type="xsd:unsignedInt" default="0"/>
	<attribute name="colPageCount" type="xsd:unsignedInt" default="0"/>
</complexType>