Forum Discussion
adding an average measure to a chart with existing column variables
- 3 years ago
Hi, MartynasBI
You can try the following methods.
Column:
Average = AVERAGEX(FILTER('Table',[Revenue growth]=EARLIER('Table'[Revenue growth])),[Nr of companies])Is this the result you expect?
Best Regards,
Community Support Team _Charlotte
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Does this work? (The paren
AVERAGE_BY_REVENUE% =
CALCULATE(
ALL(Table[CLO Name])
)
//Mediocre Power BI Advice, but it's free//
- kpost3 years ago
Solution Sage
It would be a measure, not a column.
- MartynasBI3 years agoFrequent Visitor
Unfortunately a measure in this case is not sufficient, as it cannot be added to the visual
- v-zhangti3 years ago
Community Support
Hi, MartynasBI
You can try the following methods.
Column:
Average = AVERAGEX(FILTER('Table',[Revenue growth]=EARLIER('Table'[Revenue growth])),[Nr of companies])Is this the result you expect?
Best Regards,
Community Support Team _Charlotte
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
- MartynasBI3 years agoFrequent Visitor
Hi v-zhangti ,
Yes, the numbers are correct, thanks!
However, I Power BI does not allow me to add this newly created column to the area chart visual Y axis. Do you know any workarounds around that?
Thanks,