[ARCHIVED] Student facing application: how would I get all of a student's grades (by assignment), divided by class
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-18-2020
03:51 PM
Given student A who is in class 1, 2, and 3, I would like something like the following:
"Class 1" {
"Assignment 1" : "0.891",
"Assignment 2" : "0.861",
"Assignment 3" : "0.991"
}
"Class 2" {
"Assignment 1" : "1.000",
"Assignment 2" : "0.861",
"Assignment 3" : "0.991"
}
"Class 3" {
"Assignment 1" : "0.891",
"Assignment 2" : "0.861",
"Assignment 3" : "0.991"
}
Where the numbers are the grades for each assignment.
This discussion post is outdated and has been archived. Please use the Community question forums and official documentation for the most current and accurate information.