Forum Discussion
JLambs20
Helper III
2 years agoDifference between one value and average of all values using DAX
Hello, I need help with what seems like a straight-forward problem. I simply need to divide an individual weight (green highlight) by a group of value's average (yellow). So in this example, I need...
- 2 years ago
You can create a measure using ALLSELECTED to remove the row level context. Something like this should work:
Change = DIVIDE( SUM( Weight ) , CALCULATE( AVERAGE( Weight ) , ALLSELECTED( Value ) ) , BLANK() )
JLambs20
Helper III
2 years agoThat worked perfectly! Thank you so much!