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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
Anonymous
Not applicable

Get the subject in which students scored the max marks using DAX Power BI

Consider the Table below

IDSubjectMarks
1Maths75
1Science68
1English95
1Hindi83
1SST72
2Maths98
2Science72
2English90
2Hindi68
2SST70

 

Now i Need to find the subject in which student has scored max marks. Please help with DAX to achieve this
Expected Output

IDMax MarksSubject
195English
298Maths


 

1 ACCEPTED SOLUTION

Hi @Anonymous 

You can try this,

create a measure

maxmarks = CALCULATE( MAX('Table'[Marks]),ALLEXCEPT('Table','Table'[ID]))

then create the table below,

output table = FILTER('Table','Table'[Marks]=[maxmarks])

result

vxiaotang_0-1652423035564.png

Best Regards,

Community Support Team _Tang

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

View solution in original post

4 REPLIES 4
Anonymous
Not applicable

Thanks John what if i just need to get the subject in which student scored the max marks via measure

johnt75
Super User
Super User

You can do this with a couple of measures

Top Subject = CONCATENATEX( TOPN( 1, 'Table',  'Table'[Marks]), 'Table'[Subject], ", ")

Top Marks = MAX('Table'[Marks])

In case of ties this will return a comma separated list of subjects which shared the same top marks.

Anonymous
Not applicable

Thanks John what if i just need to get the subject in which student scored the max marks via measure

Hi @Anonymous 

You can try this,

create a measure

maxmarks = CALCULATE( MAX('Table'[Marks]),ALLEXCEPT('Table','Table'[ID]))

then create the table below,

output table = FILTER('Table','Table'[Marks]=[maxmarks])

result

vxiaotang_0-1652423035564.png

Best Regards,

Community Support Team _Tang

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

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.

Top Solution Authors