Forum Discussion
DPozo
2 years agoNew Member
Problems with EARLIER
Hi everyone, I got a table like this: WEEK BELL REJECTED 1 1 1 1 2 1 1 1 2 1 2 3 2 1 25 2 2 26 2 1 4 2 2 2 2 1 0 I would like to mea...
- Anonymous2 years ago
You can use a measure like this - taking the Top 1 descending
Top1 = SUMX(TOPN(1,SUMMARIZE(WeekBellRejected,WeekBellRejected[Bell],"TotalRejected", SUM(WeekBellRejected[Rejected])),[TotalRejected], DESC),[TotalRejected])
Anonymous
2 years agoNot applicable
Use TOPN function with Top 1 - TOPN function (DAX) - DAX | Microsoft Learn
- DPozo2 years agoNew Member
I don't understand your answer.