Hello,
I am looking for a way to pull a report that shows all student submission with a timestamp by course on a particular day.
@gehringb
This report is not built-in, so I recommend setting up Canvas Data. Canvas Data allows you to create custom reports using queries or SQL. You can download Canvas Data to your computer or server, but you may need to contact your Canvas CSM to enable access.
Please feel free to send me a PM if you need help setting it up, you can also join the Data and Analytics Group Discussions for help.
FYI, the following SQL query can be used to generate this report
select canvas.users.name "Student Name", canvas.courses.name "Course", canvas.assignments.title "Assessment Name", canvas.submissions.submitted_at "Submitted At" from canvas.submissions JOIN canvas.users ON canvas.users.id = canvas.submissions.user_id JOIN canvas.assignments on canvas.assignments.id = canvas.submissions.assignment_id JOIN canvas.enrollments on canvas.enrollments.user_id = canvas.submissions.user_id and canvas.enrollments.course_id = canvas.submissions.course_id JOIN canvas.pseudonyms on canvas.users.id = canvas.pseudonyms.user_id JOIN canvas.courses on canvas.courses.id = canvas.submissions.course_id WHERE canvas.enrollments.type = 'StudentEnrollment' and canvas.enrollments.workflow_state != 'deleted' and (canvas.submissions.workflow_state = 'submitted' or canvas.submissions.workflow_state = 'graded')
Is it possible to for anyone (student or instructor) to delete a comment on a grade? If so, is there a log on the backend showing that it was deleted?
I am having an issue where my gradebook will not sort the assignments in date order. It seems to only impact discussion board assignments, but I cannot see a rationale for why they will not group themselves with their counterparts. The only factor that is new is that I am using the new feature where I can set a different…
Hi everyone, Is there anyway I can download all discussion posts, similar to downloading assignments? Thank you. Zehra
Could there be a feature added (or maybe there is something out there already) to limit not just the file EXTENSION but the file NAME as well? For example, instead of just requiring "XLSX" extension for JoeSmith-Assignment1.XLSX, we could require "*Assignment1.XLSX" for the filename. This would ensure that students submit…
Among all the things that I wish Canvas had is that one! Is it something that is been worked on? We had it in Blackboard (legacy) and I sorely miss and need in Canvas (we just transitioned to it from Bb). Please add this very needed feature!