Forum Discussion

cdcphist's avatar
cdcphist
Frequent Visitor
5 years ago
Solved

Ranking in subcategories

Hi,

 

I have the following data:

 

IDCompanyValueRanking in companyTotal Ranking
1A1517
2A5314
3A1229
4B1812
5B4416
6B3618
7B1724
8B4416
9B9312
10B1719
11C9412
12C11210
13C1812
14C5514
15C10311
16D1448
17D2011
18D1636
19D1519
20D1724

 

I know how to create a calculated column for the total ranking (the "Total Ranking" column) but i need to rank these rows with a calculated column inside each company (the "Ranking in company column"). What i tried has mostly resulted in giving the same rank to all the items.

 

Thanks.

  • Hey cdcphist ,

     

    you can filter the table that has to be considered to the current row context company.

    Try the following calculated column:

    Rank company = 
    VAR vRowCompany = myTable[Company]
    VAR vFilterTable = FILTER( myTable, myTable[Company] = vRowCompany )
    RETURN
        RANKX( vFilterTable, myTable[Value] )

     

    If you need any help please let me know.
    If I answered your question I would be happy if you could mark my post as a solution ✔️ and give it a thumbs up 👍
     
    Best regards
    Denis
     
  • Hi, cdcphist 

    I am not sure if I understood your question correctly but please check the below picture and the sample pbix file's link down below.

     

     

    Rank in Each Company CC =
    VAR currentcompany = 'Table'[Company]
    RETURN
    RANKX ( FILTER ( 'Table', 'Table'[Company] = currentcompany ), 'Table'[Value] )

     

    https://www.dropbox.com/s/yseko7od474icwa/cdcphist.pbix?dl=0 

     

     

    Hi, My name is Jihwan Kim.

     

    If this post helps, then please consider accept it as the solution to help other members find it faster, and give a big thumbs up.

     

    Linkedin: linkedin.com/in/jihwankim1975/

    Twitter: twitter.com/Jihwan_JHKIM

8 Replies

  • selimovd's avatar
    selimovd
    Icon for Most Valuable Professional rankMost Valuable Professional

    Hey cdcphist ,

     

    you can filter the table that has to be considered to the current row context company.

    Try the following calculated column:

    Rank company = 
    VAR vRowCompany = myTable[Company]
    VAR vFilterTable = FILTER( myTable, myTable[Company] = vRowCompany )
    RETURN
        RANKX( vFilterTable, myTable[Value] )

     

    If you need any help please let me know.
    If I answered your question I would be happy if you could mark my post as a solution ✔️ and give it a thumbs up 👍
     
    Best regards
    Denis
     
    • Anonymous's avatar
      Anonymous
      Not applicable

      I need Top N Locations based on their sum of scores and ordered by the sum of Total Loss amount, and want to the locations to be ranked for the records where their sum of Toptal Loss amount is not blank, I am able to get the ranked locations based on sum of Total Loss amount but not able to get their sum of scores(of Ranked locations), I am getting al the locations, please help.

      Measure =
      var RankingDimension = values('Table'[Location name])
      Var
      RankingSelect = selectedvalue('Top N RG'[Top N RG])
      var ranking2 = if(isblank(calculate(sum('Table'[Total Loss]))), blank(),
      rankx(filter(All('Table'[Location name]), not(isblank(calculate(sum('Table'[Total Loss]))))),
      calculate(sum('Table'[Total Loss])),, desc,skip))
      return
      ranking2
  • Hi, cdcphist 

    I am not sure if I understood your question correctly but please check the below picture and the sample pbix file's link down below.

     

     

    Rank in Each Company CC =
    VAR currentcompany = 'Table'[Company]
    RETURN
    RANKX ( FILTER ( 'Table', 'Table'[Company] = currentcompany ), 'Table'[Value] )

     

    https://www.dropbox.com/s/yseko7od474icwa/cdcphist.pbix?dl=0 

     

     

    Hi, My name is Jihwan Kim.

     

    If this post helps, then please consider accept it as the solution to help other members find it faster, and give a big thumbs up.

     

    Linkedin: linkedin.com/in/jihwankim1975/

    Twitter: twitter.com/Jihwan_JHKIM

  • Simona0926's avatar
    Simona0926
    Icon for Microsoft Employee rankMicrosoft Employee

    Hey all,

    I tried that measure as well on Area, but i have the error below.

    is there something i do wrong?

    The Area column indeed is a text one.

     

     

     

    • Jihwan_Kim's avatar
      Jihwan_Kim
      Icon for Super User rankSuper User

      Hi, Simona0926 

      I am not sure whether you want to create a new measure or a new column.

      Share your sample pbix file's link here with how your desired outcome looks like.

      Thanks.

      • Simona0926's avatar
        Simona0926
        Icon for Microsoft Employee rankMicrosoft Employee

        Hi,

         

        I want to create a new measure fo the "Cancellation Rate" visual.

        When I choose the status "cancelled" for example i need to see the rate of the status calculated for each Area (actually i need something similar to the table calculation " % of Row total"). 

         

        You have here the link to the PBI as well.

        Sample - Power BI