Forum Discussion
ckausihan_12
Helper I
5 years agoSum first 3 ranks
Hi, I have a table with students results and I want to sum the top 3 grades. However, a student can have the same subject multiple times with the same result. I am putting the grades into a ranking o...
amitchandak
Super User
5 years agockausihan_12 , Try like
Top 3 = CALCULATE(sum('Table'[grade_sum]),TOPN(3,ALL ('Table'[grade]),calculate(MAX('Table'[grade])),DESC),VALUES('Table'[grade]))
ckausihan_12
Helper I
5 years agoamitchandak This didn't work.