Moodle Plugins directory: Export Component Grades | Moodle.org
Export Component Grades
This plugin is no longer maintained. The functionality has been moved to
https://moodle.org/plugins/report_advancedgrading
Exports the component grades from a Rubric, Marking Guide and BTEC grading for a given assignment into an Excel spreadsheet.
Once installed, navigate to an assignment which uses a Rubric, Marking Guide or BTEC grading as a user who
has permission to grade the assignment. A new menu item will appear in the Assignment Administration menu: "Export Marking Guide Grades", "Export Rubric Grades" or 'Export BTEC Grading" as appropriate; click it to download an Excel spreadsheet
containing that assignment's component grades for all students in the course. Note the download is a spreadsheet not a CSV file.
For custom development and consultancy contact Moodle Partner Catalyst EU (https://www.catalyst-eu.net/).
I ran some tests on this plugin in Moodle, version 3.9 and 3.11. The default settings generated the error in the results.
Test 1: When the default settings are used, the results are generated with the word "empty" placed under the score column.
Test 2: As the 'show group' checkbox is checked by default, I checked the 'show student ID' checkbox and continued the installation. However, the plugin generated the same result.
Test 3: I checked the 'show student ID' checkbox and unchecked the 'show groups' checkbox. These settings generated the expected results.
This plugin is generating errors with the 'show group'. Also, it can be more user friendly if the default settings are changed.
Dianne
I submitted a pull request to your Github to update settings.php which can resolve the issue, temporarily.
I also looked at the issue tracker and noticed the issue was reported as #20 - "Show groups setting results in mismatched column headers and data."
The real issue is with the 'Show groups' as stated. However, the code I submitted is for the plugin to be less complicated. I spent weeks trying to figure out why the columns were mismatched.
Dianne
Thanks for this great plugin. I'm trying to do the reverse thing (import grades for students into a rubric from an external files).
Do you have any ideas or opinion about this ? Does it seems feasible ?
Thank you anyway.
I'm quite familiar with the db structure and I know how to extract stuff from the db through SQL and configurable reports (I wrote at least 200 for various purposes).
But because I'm not a dev, I do not know how to do the opposite and write stuff SAFELY inside the db. My fear is there is many tables to fill properly (such as gradingform_rubric_fillings, grading_instances, assign_grades) and I don't know if some functions already exists to do it. But I will ask some dev colleagues, and I let you know if we find a solution to insert marks for each criterion (for marking guides OR for rubrics) in the db without breaking anything.