Forum Discussion
Anonymous
4 years agoNot applicable
Calculate Monthly Average and sum multiple months average
Hi Team, I have a requirement to average the monthly sales and sum the monthly averages when we select multiple months. I have a Salestable as below. If I filter for Product = "Watch" and YearMon...
- 4 years ago
Hi, Anonymous;
You could create a measure.
Measure = SUMX(SUMMARIZE('Table',[Product],[Yearmonth],[Price]),[Price])The final output is shown below:
Best Regards,
Community Support Team _ Yalan Wu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
v-yalanwu-msft
Community Support
4 years agoHi, Anonymous;
You could create a measure.
Measure = SUMX(SUMMARIZE('Table',[Product],[Yearmonth],[Price]),[Price])
The final output is shown below:
Best Regards,
Community Support Team _ Yalan Wu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.