Forum Discussion
scottkad
Advocate II
10 years agoDAX Calculate the Max for a Group
Hello! I have a problem and have a feeling a simple DAX formula can solve it. I would like the 'Desired Output' column to be the Max of the 'Check' column, evaluated for each Name. ...
- 10 years ago
Thanks for the post ashishrj,
After many more google searches I was able to find this, Stack Overflow Calc MaxDesired Output=CALCULATE(MAX([Check]),FILTER(Table1,[Name]=EARLIER([Name])))
ashishrj
Power Participant
10 years agoscottkad You can use MAX() DAX expression. In your case Desired Output = MAX (TableName[Check]). Let me know if this is what you are looking for !
- scottkad10 years ago
Advocate II
Thanks for the post ashishrj,
After many more google searches I was able to find this, Stack Overflow Calc MaxDesired Output=CALCULATE(MAX([Check]),FILTER(Table1,[Name]=EARLIER([Name])))
- Shmidtk8 years agoNew Member
But what you going to do if you have unsorted list? You can't really on ordering in general. Is there is way to do this without order dependence?