2.2.4.130 KpiNumberFormatProperties

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

Used for custom formatting of KPI measure values.

 <xs:complexType name="KpiNumberFormatProperties" xmlns:xs="http://www.w3.org/2001/XMLSchema">
   <xs:attribute name="Multiplier" type="xs:decimal" use="required"/>
   <xs:attribute name="FormatType" type="tns:FormatType" use="required"/>
   <xs:attribute name="CurrencySymbol" type="xs:string"/>
   <xs:attribute name="DecimalPlaces" type="xs:int" use="required"/>
   <xs:attribute name="NegativeSymbol" type="tns:FormatNegativeSymbol" use="required"/>
   <xs:attribute name="ShowZeroAs" type="xs:string"/>
   <xs:attribute name="UseThousandsSeparator" type="xs:boolean" use="required"/>
   <xs:attribute name="AdditionalTextLeft" type="xs:string"/>
   <xs:attribute name="AdditionalTextRight" type="xs:string"/>
 </xs:complexType>

Multiplier: The multiplier value used to convert the original value to a different scale.

FormatType: The formatting pattern used for number formatting, as specified by FormatType (see section 2.2.5.23).

CurrencySymbol: The currency symbol used for number formatting.

DecimalPlaces: The number of decimal places used for number formatting. The value MUST NOT be less than 0 and MUST NOT be greater than 28.

NegativeSymbol: The representation of negative values used for number formatting, as specified by FormatNegativeSymbol (see section 2.2.5.22).

ShowZeroAs: The string used, if its length is greater than 0 characters, to express a value of 0; otherwise, 0 will be formatted as a number, as specified in FormatType (section 2.2.5.23). The length MUST NOT exceed 8 characters.

UseThousandsSeparator: A value of true indicates that a thousands separator is enabled for number formatting; a value of false indicates it is disabled.

AdditionalTextLeft: The string added to the left of the formatted number. The length MUST NOT exceed 8 characters.

AdditionalTextRight: The string added to the right of the formatted number. The length MUST NOT exceed 8 characters.