Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

The Power BI DataViz World Championships are on! With four chances to enter, you could win a spot in the LIVE Grand Finale in Las Vegas. Show off your skills.

Reply
Cgowdar
Frequent Visitor

Displaying Top 3 and Others based on dynamic ranking

The Requirement is to show the "Top 3" and "Others" in the Pie Chart.

 

Following is the sample data:

 

SubjectStudent Marks
MathsJohn50
Maths Sam60
MathsVan70
MathsJim30
Maths Jam20
MathsCan90
EnglishJohn20
EnglishSam30
EnglishVan40
EnglishJim50
EnglishJam60
EnglishCan70
FrenchJohn55
FrenchSam75
FrenchVan15
FrenchJim95
FrenchJam80
FrenchCan20

 

Subject will be the filter.

 

need to obtain Top 3 Students based on their Marks. the ranking will change for every subject choosen from the filter.

 

I have tried using RANKX Function , but not able to get to the solution.

 

Any suggestions on this will be helpfull.

 

Thanks in advance

1 ACCEPTED SOLUTION

@Cgowdar

 

You can also use a MEASURE. This will allow you to determine RANK when you select more than 1 subject

 

RANK =
RANKX (
    ALLSELECTED ( TableName[Student ] ),
    CALCULATE ( SUM ( TableName[Marks] ) ),
    ,
    DESC,
    DENSE
)

 

 

1043.png

View solution in original post

9 REPLIES 9
Zubair_Muhammad
Community Champion
Community Champion

 @Cgowdar

 

How about adding a Calculated Column that will RANK students for each subject separately

 

RANK in each Subject =
RANKX (
    FILTER (
        ALL ( TableName ),
        TableName[Subject] = EARLIER ( TableName[Subject] )
    ),
    TableName[Marks],
    ,
    DESC,
    DENSE
)

HI @Cgowdar

 

See the attached file here

 

Now you can also add another Column that will help in Pie Chart

 

Is Top 3 Student? =
IF ( TableName[RANK in each Subject] <= 3, TableName[Student ], "Others" )

1042.png

Thanks for the reply , this works perfectly fine.

 

but facing isssues while i have to apply other filers on the data 

 

for example , currencly the filter is only on "Subject"

 

we may also have additional filters like "Month" or "Grade / Standard " etc

 

Kinldy share your views on this issue if possible.

 

Thanks in advance

HI @Cgowdar

 

I believe this MEASURE should work fine even with other FILTERs

 

To test it I added another column in your sample data "YEAR" and added it as a slicer

 

See the attached file here

 

This measure is fine , but our main moto was to display the "Others" pie slice on the chart , where as this measure helps in displaying in the tool tip.

 

Thanks

@Cgowdar

 

OK, So you want to Group the "OTHERS" together which a MEASURE doesnot allow..Right?

Yes , Exactly

@Cgowdar

 

You can also use a MEASURE. This will allow you to determine RANK when you select more than 1 subject

 

RANK =
RANKX (
    ALLSELECTED ( TableName[Student ] ),
    CALCULATE ( SUM ( TableName[Marks] ) ),
    ,
    DESC,
    DENSE
)

 

 

1043.png

Helpful resources

Announcements
Feb2025 Sticker Challenge

Join our Community Sticker Challenge 2025

If you love stickers, then you will definitely want to check out our Community Sticker Challenge!