<xsd:complexType name="CrnType">
<xsd:annotation>
<xsd:documentation>Contains a description of formula operands located in another workbook.</xsd:documentation>
</xsd:annotation>
<xsd:sequence>
<xsd:element name="Row" type="RowType">
<xsd:annotation>
<xsd:documentation>Specifies the row being referenced.</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="ColFirst" type="xsd:int">
<xsd:annotation>
<xsd:documentation>Specifies the column in the referenced row that the referenced area begins with.</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="ColLast" type="xsd:int">
<xsd:annotation>
<xsd:documentation>Specifies the column in the referenced row that the referenced area ends with.</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="Number" type="xsd:double" minOccurs="0" maxOccurs="unbounded">
<xsd:annotation>
<xsd:documentation>Contains the data in the referenced cell if the data is numeric.</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="Text" type="xsd:string" minOccurs="0">
<xsd:annotation>
<xsd:documentation>Contains the data in the referenced cell if the data is text.</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="Boolean" default="False" minOccurs="0">
<xsd:annotation>
<xsd:documentation>Contains a Boolean operand.</xsd:documentation>
</xsd:annotation>
<xsd:simpleType>
<xsd:restriction base="TrueFalseType" />
</xsd:simpleType>
</xsd:element>
<xsd:element name="Error" type="ErrorType" minOccurs="0">
<xsd:annotation>
<xsd:documentation>Contains the data in the referenced cell if the data is an Error data type.</xsd:documentation>
</xsd:annotation>
</xsd:element>
</xsd:sequence>
</xsd:complexType>
|