BLOG

Formatting actual and goal for a KPI

05.12.2008 Hilmar Buchta

SQL Server 2005 | SQL Server 2008

Being able to specify the preferred format for measures and calculated measures in SSAS is a great feature since you just do the definition once and clients can leverage this central definition.

But for a KPI expression (value, goal, status, trend) it’s not directly possible to specify the format. But there is still a simple trick to do so: You just have to define the calculation itself as a calculated member within your cube script like this:

  1. create
  2. member currentcube.Measures._BacktestingTotal as 100, visible=0
  3. member currentcube.Measures._BacktestingValue as 5, visible=0 , format_string =0.00%
  4. member currentcube.Measures._BacktestingTarget as 5, visible=0 , format_string =0.00%

I removed the real computation formulas for the three values and replaced them by constants because they would simply be confusing. But you can see how the format string is applied here. These members shouldn’t be visible, so I set visible=0.

In our KPI definition you can simply point the expression to the calculated member like this:

image

By doing so, the format of the calculated member defines the format for the KPI  value, target etc.

Your email address will not be published. Required fields are marked *

Join #teamoraylispeople

Gestalte mit uns
die Welt der Daten