Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
ogster1974
Partner - Master II
Partner - Master II

Dynamic Target setting in Gauges

I want to set dynamic targets to a gauge chart.

I have the target data stored in a table for multiple KPIs

LOAD

          Program Id,

          KPI,

          YYYYMM,

          Target

In my expression I want to retrieve a Target for a specific KPI.  e.g.

IF(KPI='MeasureA', SUM(Target),0)  If I add KPI as a filter and select MeasureA it returns the value I'm looking for. 

I want to hard code the selection of the measure in this case and store as a master item for use in other charts and display multiple KPIs on the same page.

1 Solution

Accepted Solutions
ogster1974
Partner - Master II
Partner - Master II
Author

Sorted it out myself with a conditional sum

SUM({$<KPI={'MeasureA'}>} Target)

View solution in original post

1 Reply
ogster1974
Partner - Master II
Partner - Master II
Author

Sorted it out myself with a conditional sum

SUM({$<KPI={'MeasureA'}>} Target)