Contains the conditions and the formatting elements that are applied to the specified range when the conditions are true.
| Namespace | urn:schemas-microsoft-com:office:excel | 
| Schema name | XML Spreadsheet 2000 | 
| Element | Description | 
|---|---|
| Range | Contains the range or a list of ranges that apply to a conditional text format, data validation range, or data source. | 
| Condition | Contains a condition and the formatting that is applied to a cell when the condition is true. | 
| Qualifier | Contains the qualifier of a condition in conditional text formatting and data validation. | 
| Value1 | Contains a text string specifying the value or formula used in conditional text formatting. | 
| Value2 | Contains a text string specifying the value or formula used in the second part of conditional text formatting. | 
| Format | Specifies the text formatting that is applied to a cell when the condition is true. | 
| Attribute | Type | Required | Description | Possible Values | 
|---|---|---|---|---|
| Style | xsd:string | required | A text string containing attributes that describe the font weight, style, and effects that are applied when a qualifying condition is true. | See external namespace. | 
| Style | xsd:string | optional | A text string containing attributes that describe the font weight, style, and effects that are applied when a qualifying condition is true. | See external namespace. | 
      
<xsd:complexType name="ConditionalFormattingType" >
  <xsd:sequence>
    <xsd:element name="Range" type="xsd:string">
    </xsd:element>
    <xsd:element name="Condition" maxOccurs="3">
      <xsd:complexType>
        <xsd:sequence>
          <xsd:element name="Qualifier" minOccurs="0">
            <xsd:simpleType>
              <xsd:restriction base="xsd:string">
                <xsd:enumeration value="Between" />
                <xsd:enumeration value="NotBetween" />
                <xsd:enumeration value="Equal" />
                <xsd:enumeration value="NotEqual" />
                <xsd:enumeration value="Greater" />
                <xsd:enumeration value="Less" />
                <xsd:enumeration value="GreaterOrEqual" />
                <xsd:enumeration value="LessOrEqual" />
              </xsd:restriction>
            </xsd:simpleType>
          </xsd:element>
          <xsd:element name="Value1" type="xsd:string">
          </xsd:element>
          <xsd:element name="Value2" type="xsd:string" minOccurs="0">
          </xsd:element>
          <xsd:element name="Format" minOccurs="0">
            <xsd:complexType>
              <xsd:attribute name="Style" type="xsd:string" use="required">
              </xsd:attribute>
            </xsd:complexType>
          </xsd:element>
        </xsd:sequence>
        <xsd:attribute name="Style" type="xsd:string" use="optional">
        </xsd:attribute>
      </xsd:complexType>
    </xsd:element>
  </xsd:sequence>
</xsd:complexType>