jimmyfromus
Helper III
5 years agoMin value based on year column
Hi, I've 2 columns, one with year and one with an integer value. Year rank 2017 35 2018 36 I'm simply trying to create a measure for this to calculate the minimum value t...
- 5 years ago
parry2k I used this DAX which seems to work for me.
Measure = CALCULATE(MIN(Comparison[rank]),FILTER(ALLSELECTED(Comparison),(Comparison[Year] = (MIN( Comparison[Year] )))))