Forum Discussion
Tevon713
4 years agoHelper V
Measure total column per year incorrect
Hi all. I need help again. I was testing some measures and found out the the total of measure column is incorrect. With filters on the time period, the per month or row calculation look okay but whe...
- 4 years ago
Hi Tevon713 ,
Try these formulas as a measureAverage of Monthly Divisions = AVERAGEX( SUMMARIZE ( 'Table', Table[Year], Table[Month Name], "Div", [Divide Measure] ), [Div] )Sum of Monthly Divisions = SUMX ( SUMMARIZE ( 'Table', Table[Year], Table[Month Name], "Div", [Divide Measure] ), [Div] )
danextian
4 years agoSuper User
Hi Tevon713 ,
Try these formulas as a measure
Average of Monthly Divisions =
AVERAGEX(
SUMMARIZE ( 'Table', Table[Year], Table[Month Name], "Div", [Divide Measure] ),
[Div]
)Sum of Monthly Divisions =
SUMX (
SUMMARIZE ( 'Table', Table[Year], Table[Month Name], "Div", [Divide Measure] ),
[Div]
)