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')
There is known issue about being unable to use Media Recorder to record media in the RCE and save it when the webcam is disabled (audio only). It's the same whether or not assignment enhancements is on. Recording media with a disabled webcam in the RCE causes an error message during the save process - Instructure Community…
Hi everyone, It looks like the multiple rubric idea has bounced around a bit with the different feature request methodologies over the years, including a mention in New & Next 2024 according to this post, interviews in the enhanced rubrics features group, being listed as "under consideration" on the new roadmap, and this…
We are using the Learning Mastery Gradebook with an rubric on account-level. When we enter the gradebook, the sorting does not make any sense. How can we make the sorting so it makes sense to us. It feels like a randam sorting.
Hi all, Quick question about the Gradebook color status for a 2-part checkpoint discussion. If a student completes the first due date (initial post) but does not complete the required replies by the second due date, is there any way for Canvas to automatically show a color (e.g., missing/late) instead of staying as…
Canvas Portfolios provide a powerful platform for students to document their learning journey, reflect on their progress, and showcase competencies. However, in programs where multiple educators are involved in assessment—such as team teaching, moderation, or competency-based evaluation—there are important questions about…