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')
Hello, Are the email notifications being sent when a course announcement is posted? I have a report of them not working for both students and the professor in a course. They were working prior to the incident last week. I also created a test course to see if my notifications would come through to myself after turning on…
Is there any sign when Beta will return. There is a release scheduled for Saturday, May 16, and I need to test these new features before they hit production. Is there any chance this release will be delayed to allow people more time to review/test these features given recent incidents that may have distracted a few of us…
Is the Submitted date and time the moment when the button was pressed, or the moment when the quiz uploaded into the system?
Is there a way for the grading rubric to have a default selection set? I have a rubric that checks if a student has mastered a learning objective at the end of the semester (yes or no) and most students are 'yes'. It is tedious to click yes 10 times per student in each class. Can the rubric auto generate a 'yes' and I can…
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…