<ST_GroupBy>
(Values Group By)
This simple type defines types of data grouping that can be performed on a PivotTable.
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 a grouping on "days" for date values. |
|
Indicates a grouping on "hours" for date values. |
|
Indicates a grouping on "minutes" for date values. |
|
Indicates a grouping on "months" for date values. |
|
Indicates a grouping on "quarters" for date values. |
|
Indicates a grouping by numeric ranges for numeric values. |
|
Indicates a grouping on "seconds" for date values. |
|
Indicates a grouping on "years" for date values. |
Referenced By |
---|
|
The following XML Schema fragment defines the contents of this simple type:
<simpleType name="ST_GroupBy">
<restriction base="xsd:string">
<enumeration value="range"/>
<enumeration value="seconds"/>
<enumeration value="minutes"/>
<enumeration value="hours"/>
<enumeration value="days"/>
<enumeration value="months"/>
<enumeration value="quarters"/>
<enumeration value="years"/>
</restriction>
</simpleType>