Forum Discussion

shkabuzar's avatar
shkabuzar
Frequent Visitor
7 years ago
Solved

TopN values in each month

Hi,   I would like create TOP10 categories for the month, the expected results should be like below. In the below image the top10 of the month are highlighted in Blue color. In the month of october...
  • v-lili6-msft's avatar
    7 years ago

    hi, shkabuzar

    After my test, you could try this way:

    Step1:

    Use RANKX Function to create a measure

    rank = RANKX(ALLEXCEPT(Table1,Table1[Month]),CALCULATE(SUM(Table1[Qty])),,DESC)

    Step2:

    Use Conditional formatting in Power bi

    Right field Value choose Conditional formatting

    In my simple case, i will show top2 values in red by month

     

    Result:

    here is pbix, please try it.

     

    Best Regards,

    Lin