For my project, I need to compare responses between two Google forms with the same questions. At the beginning of the program, the student fills out a form with 15 questions (competencies) of the type (Never, rarely, sometimes, always), and at the end of the program, they fill out another form with the same questions. The goal is to validate, by student, whether there has been progress in competencies or the evolution of competencies among the various students.I already have the table with the students' data; how should I create the tables for this project? Thank you very much!
HELP - Pre-Post Assessment: Comparing Individual Student Progress and Competency Evolution
Best answer by TheTimeSavingCo
Hm, you mentioned you already have all their student data in the table. I’m assuming you have some sort of unique identifier (student # or email or something?) as well as the date of the assessment like so?

If so, you could try grouping on the unique field (I grouped on email), which would give you something like this:

This works as a visual thing, but if you need to track metrics e.g. how many students improved on Competency 1 or something, then you’d need to have a Students table like so:

And this would let you create formula fields to compare their progress:

To do so, we would create a new table called ‘Students’ and create a linked record field to it, and then:
- Click the header of the field that contains the unique identifier
- Hit CMD/CTRL + C
- Click the header of the linked field
- Hit CMD/CTRL + V
This’ll create one record for each student:

And after that, we would create lookup fields to display the pre and post values for each Competency by sorting by the Date and either displaying the earliest or latest one:

And then the formula field would compare the values for us:
IF(
{Competency 1 (from Submissions) - Post assessment} = {Competency 1 (from Submissions) - Pre assessment},
0,
IF(
{Competency 1 (from Submissions) - Post assessment} = "Always",
1,
IF(
AND({Competency 1 (from Submissions) - Post assessment} = "Sometimes", OR({Competency 1 (from Submissions) - Pre assessment} = "Rarely", {Competency 1 (from Submissions) - Pre assessment} = "Never")),
1,
IF(
AND({Competency 1 (from Submissions) - Post assessment} = "Rarely", {Competency 1 (from Submissions) - Pre assessment} = "Never"),
1,
0
)
)
)
)
I’ve set it up in this base for you to check out and you can duplicate it into your own workspace so that you can play with it!
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.