Forum Discussion

djive's avatar
djive
Frequent Visitor
8 years ago
Solved

Overall Balanced Score (Averages/divided)

Good Evening;   I'm relatively new to Power Bi and Can't seem to figure this out.  I Would appreciate any help.   I have a table called "Scorecard" and a Table called "Hierarchy" that houses well...
  • Anonymous's avatar
    Anonymous
    8 years ago

    Hi djive,

     

    Maybe you can try to use below formula  if it works for your scenario:

    BalanceScore =
    DIVIDE (
        SUMX (
            FILTER (
                ALL ( 'Scorecard Measures' ),
                [Store] IN VALUES ( 'Scorecard Measures'[Store] )
            ),
            [Agent Metric Attainment 1] * .3
                + [Agent Metric Attainment 2] * .3
                + [Agent Metric Attainment 3] * .2
        ),
        SUMX ( Agent_Targets, Agent_Targets[Weight] )
    )
    

    Regards,

    Xiaoxin Sheng