Forum Discussion
andyor
Resolver I
3 years agoAverage value possible on line chart Y axis?
Any way of getting in an average value of all the values in my line chart? My current graph is like this And I want to include a horizontal line average like this:
AntonioM
Solution Sage
2 years agoSo then you would need a measure to calculate an average.
For something simple like this:
and using 'type' as your small multiple
Average = CALCULATE(AVERAGE('Table'[Value]), ALL('Table'[Day]))
That gives you two different average lines (5 and 15 in my example)
Anonymous
2 years agoNot applicable
Yes, a measure is the solution! My issue is that I need to have an average of a complex measure, which basically is the cumulated value of a table field up to the date. Transactions are positive and negative and you see the cumulated value go up and down.. And I need the average of that cumulated value! I'm geting crazy to obtain it...