2.6.169 CT_RichSortCondition

Target namespace: http://schemas.microsoft.com/office/spreadsheetml/2017/richdata2

Referenced by: richSortCondition, CT_SortRule

This complex type specifies sort conditions associated with rich values.

Attributes:

richSortKey: An ST_Xstring ([ISO/IEC29500-1:2016] section 22.9.2.19) attribute that specifies the rich value key for which the sort condition is defined. This string MUST be less than or equal to of 255 characters in length.

descending: A boolean ([XMLSCHEMA2/2] section 3.2.2) attribute that specifies the direction of the sort.

Value

Meaning

"false"

If sortBy is "value", sort in ascending order. If sortBy is "cellColor" or "fontColor", cells in which the cell color or cell font color specified by dxfId occurs are ordered at the top of the range. If sortBy is "icon", cells in which the icon specified by iconSet and iconId occurs are ordered at the top of the range.

"true"

If sortBy is "value", sort in descending order. If sortBy is "cellColor" or "fontColor", cells in which the cell color or cell font color specified by dxfId occurs are ordered at the bottom of the range. If sortBy is "icon", cells in which the icon specified by iconSet and iconId occurs are ordered at the bottom of the range.

sortBy: An ST_SortBy ([ISO/IEC29500-1:2016] section 18.18.72) attribute that specifies how the cells in a range are sorted.

ref: An ST_Ref ([ISO/IEC29500-1:2016] section 18.18.62) attribute that specifies the row or column to which this sort condition applies. This value MUST be contained within the ref in the sortState ([ISO/IEC29500-1:2016] section 18.3.1.92) element that precedes this element. If the sortState.columnSort attribute that precedes this element is "false", this value specifies the column to which this sort condition applies and there MUST be only a single column specified by ref. If the sortState.columnSort attribute that precedes this element is "true", this value specifies the row to which this sort condition applies and there MUST be only a single row specified by ref.

customList: An ST_Xstring ([ISO/IEC29500-1:2016] section 22.9.2.19) attribute that specifies a comma-delimited list of strings that specifies a custom sort order. The order of strings in the list specifies the sort order. When a cell value matches a string in the list, it is sorted ahead of the cell values that match a later string in the list, and so on for each cell in the range. MUST be ignored if sortBy is not equal to "value".

dxfId: An ST_DxfId ([ISO/IEC29500-1:2016] section 18.18.25) attribute that specifies the format identifier when sortBy equals "cellColor" or sortBy equals "fontColor". MUST NOT be present if sortBy equals "icon" or "value".

iconSet: An ST_IconSetType attribute that specifies the icon set when sortBy equals "icon". The absence of this attribute means no icon. MUST NOT be present if sortBy is not equal to "icon".

iconId: An unsignedInt ([XMLSCHEMA2/2] section 3.3.22) attribute that specifies the zero-based index of an icon in an icon set. If the icon set specified by iconSet has three icons, this value MUST be less than or equal to 2. If the icon set specified by iconSet has four icons, this value MUST be less than or equal to 3. If the icon set specified by iconSet has five icons, this value MUST be less than or equal to 4. The absence of this attribute means no icon. MUST NOT be present if sortBy is not equal to "icon".

The following W3C XML Schema ([XMLSCHEMA1/2] section 2.1) fragment specifies the contents of this complex type.

 <xsd:complexType name="CT_RichSortCondition">
   <xsd:complexContent>
     <xsd:extension base="x2:CT_SortCondition">
       <xsd:attribute name="richSortKey" type="x:ST_Xstring" use="optional"/>
     </xsd:extension>
   </xsd:complexContent>
 </xsd:complexType>

See section 5.20 for the full W3C XML Schema ([XMLSCHEMA1/2] section 2.1).