Forum Discussion
Anonymous
6 years agoNot applicable
How to create measures that keep steady value
I am working on creating a control chart to show average cost each month in the past 12 months. I have created a Line Chart visual with month on the x-axis and average cost per month on the y-axis. O...
- 6 years agoHi Anonymous,
You need to do a measure similar to this
Total average = CALCULATE (AVERAGE(Table[Total Cost]) ; ALL(Table[Month]))
Anonymous
6 years agoNot applicable
Hi Anonymous ,
Please refer to the measure below.
Measure = CALCULATE(AVERAGE('Table'[Total Cost]),ALLEXCEPT('Table','Table'[ Year],'Table'[Month]))
Best Regards,
Jay
Community Support Team _ Jay Wang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.