Starting December 3, join live sessions with database experts and the Microsoft product team to learn just how easy it is to get started
Learn moreShape the future of the Fabric Community! Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions. Take survey.
I need a dax formula to get the latest score for each student for a given month
Table structure: Student Name, Date, Score, Session
In a given month, there are multiple scores (one for each session). I just need to get the score for the latest date for any student in that month. It does not matter which session it is. Then I need to show the avg. of this latest score in a graph plotted for each month.
Here is what I tried so far but I don't how to do it with dates instead of session
```
Latest score =
var curr = LASTNONBLANK(tbl[student_name],[student_name])
return
LOOKUPVALUE(tbl[score],tbl[session],MAXX(FILTER(ALL(tbl),tbl[student_name]=curr),[session]),tbl[student_name],curr)
```
@priyankaj1311 So generally this is a double lookup essentially. Use something like this: Lookup Min/Max - Microsoft Fabric Community
User | Count |
---|---|
94 | |
92 | |
84 | |
83 | |
49 |
User | Count |
---|---|
150 | |
146 | |
112 | |
73 | |
56 |