Forum Discussion
emmawdmi22
Helper I
3 years agoAverage of Sum Measure
I need an average of the max of sums.
- 3 years ago
Follow:
1-Creating a measure:
SUMMeasure=SUM('Table'[PowerData])2-Then the measure below is what you want:
AVGMeasure=AVERAGEX( VALUES(Table[Date]), [SUMMeasure] )
MohammadLoran25
Solution Sage
3 years agoPlease share an example with data that you want to be shown as your result.
emmawdmi22
Helper I
3 years agoSo if this is the data I am given, the answer would be 90. Sum up by the similar time first, then take an average of those sums. So ((10+20+30)+(40+60+80)+(10+20))/3
- MohammadLoran253 years ago
Solution Sage
Follow:
1-Creating a measure:
SUMMeasure=SUM('Table'[PowerData])2-Then the measure below is what you want:
AVGMeasure=AVERAGEX( VALUES(Table[Date]), [SUMMeasure] )- emmawdmi223 years ago
Helper I
Thank you!