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')
I have a quiz set for 2 hours and its availability window set for 2.5 hours. During the exam I receive the warning message as follows: Please note that the adjusted time limit you've set extends beyond the "Until Time" of [Apr 16, 2026, 11:30 AM] for this quiz. The quiz will automatically submit at the "Until Time" you've…
Hi, we have noticed some changes in the way Canva docs or files are able to be embedded live. Canva is integrated via LTI 1.3 in our Canvas Has Canvas recently changed how it handles unauthenticated external iframe embeds, specifically for tools like Canva? Are public Canva embed iframes (canva.com/design/.../view?embed)…
Summary:The Learning Mastery Gradebook allows drag-and-drop reordering of outcome columns, and this triggers a call to /api/v1/courses/:course_id/assign_outcome_order. The API returns 204 No Content (success), but the column order does not persist after page refresh. Steps to Reproduce: Open Learning Mastery Gradebook for…
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…