I am trying to export assignment standard score using a PowerQuery. All the fields I need are in the StandardGradeScetion table which are storecode, calculatedgrade, standardid, and studentsdcid. I need to include the assignment name associated with each score in the StandardGradeSection table.
I see that the AssignmentSection and Assignment tables have the Assignment name. Does anyone know what tables I need to join to the StandardGradeSection table to get to the assignment name?
Thanks
Hello!
To include the assignment name in your PowerQuery export, you'll need to join the StandardGradeSection table with the AssignmentSection and Assignment tables. The likely join path is:
StandardGradeSection → AssignmentSection (using standardid or studentsdcid as the key)
AssignmentSection → Assignment (using assignmentid as the key)