[Table of Contents] [docx version]

SpreadsheetML Reference Material - Table of Contents

groupItems (OLAP Group Items)

Represents the collection of items in a field group.

[Example:


<fieldGroup par="6" base="0">
<rangePr groupBy="months" startDate="2002-01-01T00:00:00"
endDate="2006-05-06T00:00:00"/>
<groupItems count="14">
<s v="&lt;1/1/2002"/>
<s v="Jan"/>
<s v="Feb"/>
<s v="Mar"/>

<s v="Apr"/>
<s v="May"/>
<s v="Jun"/>
<s v="Jul"/>
<s v="Aug"/>

<s v="Sep"/>
<s v="Oct"/>
<s v="Nov"/>
<s v="Dec"/>
<s v="&gt;5/6/2006"/>
</groupItems>
</fieldGroup>
</cacheField>

<cacheField name="Name" numFmtId="0">
<sharedItems count="4">
<s v="Joe"/>
<s v="John"/>
<s v="Bob"/>
<s v="Robert"/>
</sharedItems>
<fieldGroup par="4"/>
</cacheField>

<cacheField name="ProductID" numFmtId="0">
<sharedItems containsSemiMixedTypes="0" containsString="0" containsNumber="1"
containsInteger="1" minValue="1" maxValue="4" count="4">
<n v="1"/>
<n v="2"/>
<n v="3"/>
<n v="4"/>
</sharedItems>

<fieldGroup base="2">
<rangePr startNum="1" endNum="4" groupInterval="2"/>
<groupItems count="4">
<s v="&lt;1"/>
<s v="1-2"/>
<s v="3-4"/>
<s v="&gt;5"/>
</groupItems>
</fieldGroup>

end example]

Parent Elements

fieldGroup3.10.1.30)

 

Child Elements

Subclause

b (Boolean)

§3.10.1.2

d (Date Time)

§3.10.1.21

e (Error Value)

§3.10.1.27

m (No Value)

§3.10.1.50

n (Numeric)

§3.10.1.60

s (Character Value)

§3.10.1.85

 

Attributes

Description

count (Items Created Count)

Specifies the number of items created for this grouped field.

 

The possible values for this attribute are defined by the XML Schema unsignedInt datatype.

The following XML Schema fragment defines the contents of this element:

<complexType name="CT_GroupItems">

   <choice maxOccurs="unbounded">

   <element name="m" type="CT_Missing"/>

   <element name="n" type="CT_Number"/>

   <element name="b" type="CT_Boolean"/>

   <element name="e" type="CT_Error"/>

   <element name="s" type="CT_String"/>

   <element name="d" type="CT_DateTime"/>

   </choice>

   <attribute name="count" type="xsd:unsignedInt"/>

</complexType>