Forum Discussion
vijayvizzu
6 years agoHelper III
Average Cumulative not working
Hi Folks, I have been trying to fix the error, unable to resolve it. I had created a measure "Avg USD" which normally calculate average values for each month. Its working good, and now i had creaetd ...
- 6 years ago
Hi,
Please try this measure:
Cummulative Avg = SUMX ( SUMMARIZE ( FILTER ( ALLSELECTED ( Calendar ), 'Calendar'[Date] <= MAX ( 'Calendar'[Date] ) ), 'Calendar'[MonthYr], "Avg", [Avg USD] ), [Avg] )Best Regards,
Giotto
v-gizhi-msft
6 years agoCommunity Support
Hi,
Please try this measure:
Cummulative Avg =
SUMX (
SUMMARIZE (
FILTER (
ALLSELECTED ( Calendar ),
'Calendar'[Date] <= MAX ( 'Calendar'[Date] )
),
'Calendar'[MonthYr],
"Avg", [Avg USD]
),
[Avg]
)
Best Regards,
Giotto
- vijayvizzu6 years agoHelper III
v-gizhi-msft amitchandak Thank you everyone for your support