Hi everyone! I’m having a difficult time calculating average across multiple columns and rows in my DB. Here is my current DB set up:
Columns
- Column 1 = Student_Name
- Column 2 = Question_1_Score (a numerical value 1-5)
- Column 3 = Question_3_Score (a numerical value 1-5)
Rows
-
each student can have multiple rows because the same questions will be answered weekly. For example:
-
John Smith | 2 | 5
-
John Smith | 3 | 1
-
John Smith | 1 | 4
I’m trying to calculate each student’s score across all of their respective entries, which spans multiple rows and columns. I am attempting to do this via a repeating group.
Any help would be appreciated! Thank you