<ST_ItemType>
(PivotItem Type)
This simple type defines the type for a pivotItem.
This simple type's contents are a restriction of the XML Schema string datatype.
The following are possible enumeration values for this type:
Enumeration Value |
Description |
---|---|
|
Indicates the pivot item represents an "average" aggregate function. |
|
Indicates the pivot item represents a blank line. |
|
Indicates the pivot item represents custom the "count" aggregate." |
|
Indicates the pivot item represents the "count numbers" aggregate function. |
|
Indicate the pivot item represents data. |
|
Indicates the pivot item represents the default type for this PivotTable. The default pivot item type is the "total" aggregate function. |
|
Indicates the pivot items represents the grand total line. |
|
Indicates the pivot item represents the "maximum" aggregate function. |
|
Indicates the pivot item represents the "minimum" aggregate function. |
|
Indicates the pivot item represents the "product" function. |
|
Indicates the pivot item represents the "standard deviation" aggregate function. |
|
Indicates the pivot item represents the "standard deviation population" aggregate function. |
|
Indicates the pivot item represents the "sum" aggregate value. |
|
Indicates the pivot item represents the "variance" aggregate value. |
|
Indicates the pivot item represents the "variance population" aggregate value. |
The following XML Schema fragment defines the contents of this simple type:
<simpleType name="ST_ItemType">
<restriction base="xsd:string">
<enumeration value="data"/>
<enumeration value="default"/>
<enumeration value="sum"/>
<enumeration value="countA"/>
<enumeration value="avg"/>
<enumeration value="max"/>
<enumeration value="min"/>
<enumeration value="product"/>
<enumeration value="count"/>
<enumeration value="stdDev"/>
<enumeration value="stdDevP"/>
<enumeration value="var"/>
<enumeration value="varP"/>
<enumeration value="grand"/>
<enumeration value="blank"/>
</restriction>
</simpleType>