Forum Discussion

verianalist2022's avatar
verianalist2022
Frequent Visitor
4 years ago
Solved

TopN Perecent

Merhaba 

Bir pareto grafik yaptım ve %80 olarak renklendirme yaptım.Şimdi yapılan şey örnek veriyorum %80 denk gelen (Top2) sırala yapıp bir grafikte hemen 1. yada tek 2. olarak önlemeye.yardım edin.

 

  • Anonymous's avatar
    Anonymous
    4 years ago

    Hi verianalist2022 ,

     

    It seems that you want to re-arrange the order based on the standard=0.8 in visuals. For example:

    measure value expect rank
    0.87 3
    0.9 2
    0.92 1

    0.76

    6
    0.54 5
    0.23 4

     

    If so, please try:

    Rank = 
    var _1=RANKX(FILTER(ALL('Table'),[Measure]>=0.8),[Measure],,DESC,Dense)
    return IF([Measure]<0.8, RANKX( FILTER(ALL('Table'),[Measure]<0.8),[Measure],,ASC,Dense)+_1, _1)
    

     And apply it to Tooltips pane, and sort the axis by it:

     

    If not, please provide me with more details about your table and your problem or share me with your pbix file after removing sensitive data.

     

     

    Best Regards,
    Eyelyn Qin
    If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

1 Reply

  • Anonymous's avatar
    Anonymous
    Not applicable

    Hi verianalist2022 ,

     

    It seems that you want to re-arrange the order based on the standard=0.8 in visuals. For example:

    measure value expect rank
    0.87 3
    0.9 2
    0.92 1

    0.76

    6
    0.54 5
    0.23 4

     

    If so, please try:

    Rank = 
    var _1=RANKX(FILTER(ALL('Table'),[Measure]>=0.8),[Measure],,DESC,Dense)
    return IF([Measure]<0.8, RANKX( FILTER(ALL('Table'),[Measure]<0.8),[Measure],,ASC,Dense)+_1, _1)
    

     And apply it to Tooltips pane, and sort the axis by it:

     

    If not, please provide me with more details about your table and your problem or share me with your pbix file after removing sensitive data.

     

     

    Best Regards,
    Eyelyn Qin
    If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.