<ST_DataConsolidateFunction>
(Data Consolidation Functions)
Data consolidation functions specified by the user and used to consolidate ranges of data.
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 |
---|---|
|
The average of the values. |
|
The number of data values. The Count consolidation function works the same as the COUNTA worksheet function. |
|
The number of data values that are numbers. The Count Nums consolidation function works the same as the COUNT worksheet function. |
|
The largest value. |
|
The smallest value. |
|
The product of the values. |
|
An estimate of the standard deviation of a population, where the sample is a subset of the entire population. |
|
The standard deviation of a population, where the population is all of the data to be summarized. |
|
The sum of the values. |
|
An estimate of the variance of a population, where the sample is a subset of the entire population. |
|
The variance of a population, where the population is all of the data to be summarized. |
The following XML Schema fragment defines the contents of this simple type:
<simpleType name="ST_DataConsolidateFunction">
<restriction base="xsd:string">
<enumeration value="average"/>
<enumeration value="count"/>
<enumeration value="countNums"/>
<enumeration value="max"/>
<enumeration value="min"/>
<enumeration value="product"/>
<enumeration value="stdDev"/>
<enumeration value="stdDevp"/>
<enumeration value="sum"/>
<enumeration value="var"/>
<enumeration value="varp"/>
</restriction>
</simpleType>