Forum Discussion
Average of Multiple Growth Rates
- 2 years ago
I solved it!
I needed to use the AVERAGEX(Summarize(Summary,Summary[Team], [Growth Measure])
This in effect groups the team measures and then finds the average of them 🙂
Thanks! It gets me to the average for each line.
RETURN CurrentYearSales is correct
RETURN PreviousYearSales is correct
but
RETURN AVERAGEX(...... (CurrentYearSales - PreviousYearSales) / PreviousYearSales ) is calculating as "Infinity"
As a check, RETURN (CurrentYearSales-PreviousYearSales) doesn't calculate correctly either.
I'm playing around with it and feel like it's close but still not quite right.
Thank you
I solved it!
I needed to use the AVERAGEX(Summarize(Summary,Summary[Team], [Growth Measure])
This in effect groups the team measures and then finds the average of them 🙂