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.
Any help is much appreciated, thanks.
Solved! Go to Solution.
Thanks for the post ashishrj,
After many more google searches I was able to find this, Stack Overflow Calc Max
Desired Output=CALCULATE(MAX([Check]),FILTER(Table1,[Name]=EARLIER([Name])))
@scottkad 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 !
Thanks for the post ashishrj,
After many more google searches I was able to find this, Stack Overflow Calc Max
Desired Output=CALCULATE(MAX([Check]),FILTER(Table1,[Name]=EARLIER([Name])))
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?
Join us for a free, hands-on Microsoft workshop led by women trainers for women where you will learn how to build a Dashboard in a Day!
User | Count |
---|---|
125 | |
78 | |
69 | |
55 | |
55 |
User | Count |
---|---|
200 | |
104 | |
85 | |
80 | |
77 |