<ST_TotalsRowFunction>
(Totals Row Function Types)
An enumeration that specifies what function is used to aggregate the data in a column before it is displayed in the totals row.
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 |
---|---|
|
Represents the arithmetic mean. |
|
Represents a count of the number of non-empty cells. |
|
Represents the number of cells that contain numbers. |
|
Represents the formula provided in |
|
Represents the largest value. |
|
Represents the smallest value. |
|
No total row. |
|
Represents the estimated standard deviation. |
|
Represents the arithmetic sum. |
|
Represents the estimated variance. |
Referenced By |
---|
|
The following XML Schema fragment defines the contents of this simple type:
<simpleType name="ST_TotalsRowFunction">
<restriction base="xsd:string">
<enumeration value="none"/>
<enumeration value="sum"/>
<enumeration value="min"/>
<enumeration value="max"/>
<enumeration value="average"/>
<enumeration value="count"/>
<enumeration value="countNums"/>
<enumeration value="stdDev"/>
<enumeration value="var"/>
<enumeration value="custom"/>
</restriction>
</simpleType>