Forum Discussion

jrsdata's avatar
jrsdata
Regular Visitor
6 years ago
Solved

Creating Dynamic Ranking Tier Measure

Hi All-   Relatively new to Power BI.  I am looking to add a dynamic measure which would create a dynamic tiered ranking.  There should be 5 tiers.  For starters, each could comprise of 20%.  Howev...
  • TomMartens's avatar
    TomMartens
    6 years ago

    Hey jrsdata ,

     

    i forgot the 1st CALCULATE ...

    this measure

    Measure = 
    DIVIDE(
        CALCULATE(SUM('Table'[Policy Count]))
        , CALCULATE(SUM('Table'[Policy Count]) , ALL('Table'[County]))
    )

    allows to create this little report:

    Regards,

    Tom