[Table of Contents] [docx version]
SpreadsheetML Reference Material - Table of Contents
mdx (MDX Metadata Record)
This element represents a single record of MDX metadata information which can express a tuple, KPI, set, or member property.
Parent Elements |
mdxMetadata (§3.9.7) |
Child Elements |
Subclause |
k (KPI MDX Metadata) |
§3.9.5 |
ms (Set MDX Metadata) |
§3.9.12 |
p (Member Property MDX Metadata) |
§3.9.14 |
t (Tuple MDX Metadata) |
§3.9.16 |
Attributes |
Description |
f (Cube Function Tag) |
This is an enumeration representing the type of the calling cube function from the spreadsheet.
The possible values for this attribute are defined by the ST_MdxFunctionType simple type (§3.18.46). |
n (Connection Name Index) |
The zero based index of connection name in metadata string store, metadataStrings.
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_Mdx">
<choice minOccurs="1" maxOccurs="1">
<element name="t" type="CT_MdxTuple"/>
<element name="ms" type="CT_MdxSet"/>
<element name="p" type="CT_MdxMemeberProp"/>
<element name="k" type="CT_MdxKPI"/>
</choice>
<attribute name="n" type="xsd:unsignedInt" use="required"/>
<attribute name="f" type="ST_MdxFunctionType" use="required"/>
</complexType>