2.2.5.51 ValueSources

Namespace: http://www.microsoft.com/performancepoint/scorecards

This simple type enumeration specifies how rollup values are computed.  The enumeration determines how values for parent scorecard row items will be computed from the values of child scorecard row items within the same scorecard column.

 <xs:simpleType name="ValueSources" xmlns:xs="http://www.w3.org/2001/XMLSchema">
   <xs:restriction base="xs:string">
     <xs:enumeration value="Default"/>
     <xs:enumeration value="NoValue"/>
     <xs:enumeration value="SourceData"/>
     <xs:enumeration value="Text"/>
     <xs:enumeration value="AverageRollup"/>
     <xs:enumeration value="MinRollup"/>
     <xs:enumeration value="MaxRollup"/>
     <xs:enumeration value="TotalRollup"/>
   </xs:restriction>
 </xs:simpleType>

The following table specifies the allowable values for the ValueSources simple type.

Value

Meaning

Default

Use default settings: If there are child members (2), the average weighted value of child objects MUST be used; otherwise, when there are no child objects, SourceData value MUST be used.

NoValue

Don’t compute or show values.

SourceData

No rollup, query source data.

Text

Text value of source data.

AverageRollup

Mathematical average value of child objects.

MinRollup

Minimum value of child objects.

MaxRollup

Maximum value of child objects.

TotalRollup

Total, summed, value of child objects.