Forum Discussion

A-T24's avatar
A-T24
Copper Contributor
Feb 12, 2025
Solved

Calculating a running average grade

Hi   I am a teacher and want to add to my student record sheet a running average grade. I would like to set it up so that the average updates throughout the year when more test data is added. Howev...
  • OliverScheurich's avatar
    Feb 12, 2025

    This seems to return the intended result in my sample file.

    =SUM(
    IF(E2="",0,VLOOKUP(G2,$R$2:$S$22,2,FALSE)),
    IF(H2="",0,VLOOKUP(J2,$R$2:$S$22,2,FALSE)),
    IF(K2="",0,VLOOKUP(M2,$R$2:$S$22,2,FALSE)),
    IF(N2="",0,VLOOKUP(P2,$R$2:$S$22,2,FALSE)))/
    COUNT(E2,H2,K2,N2)

     

Resources