Mar 23 2023 08:21 AM
Can I get the average Diagnostic Time by grade level into "column 1"? Ideally, I 'd like to have the average for each grade level listed in Column 3 which entitled Column 1
Mar 23 2023 08:33 AM
you can use this formula in column N: =AVERAGEIF(L2:L7,1,M2:M7).
This will calculate the average of the scores for grade level 1 only.
I hope this helps.
Mar 23 2023 09:17 AM
Mar 23 2023 09:25 AM
Solution
I think that rather lengthy formula is equivalent to just:
=IFERROR(ROUND(AVERAGEIF(AA:AA,AA2,AB:AB),0),"")
Regards