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

Earn the coveted Fabric Analytics Engineer certification. 100% off your exam for a limited time only!

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
April AMA free

Microsoft Fabric AMA Livestream

Join us Tuesday, April 09, 9:00 – 10:00 AM PST for a live, expert-led Q&A session on all things Microsoft Fabric!

March Fabric Community Update

Fabric Community Update - March 2024

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

Top Solution Authors