Forum Discussion
IanWA
9 years agoRegular Visitor
Calculate Average Growth using Test sequence showing Infinity
I need to display the average growth for students from one test to the next where each test has scores for a number of areas. I can't use dates as I'm after growth between from test 1 to up to to 6 ...
- 9 years ago
Solved it.
Should have used:
Growth1 = (AVERAGEX(Sheet1, [Ass2]) - AVERAGEX(Sheet1,[Ass1])) / AVERAGEX(Sheet1, [Ass1])
although I don't really understand why.