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')
When you are creating a quiz and/or also reviewing a quiz in Canvas after the class has taken it, the questions aren't numbered so after you get past the first few questions, there is no way to even tell what number you are on. Can someone change that?
Speedgrader chaning file name when being downloaded. Speedgrader: When downloading a submitted assignment, the file name is being changed to an unrecognizable name — (Student's actual name was part of the file name — changed for privacy.) Ideas???
We are all familiar with the standard Course Calendar, where assignment due dates are automatically added. However, at my institution, we structure our assignments as Challenges that develop over a period of time, rather than just a single deadline. Currently, the calendar only highlights the "end point." It would be a…
The current placement of the "Submit" button creates a "slip" in user behavior where habit-clicking "Next" leads to an accidental final submission. I think Canvas could easily fix this by: Moving the Submit button away from the navigation buttons (maybe above the question instead of below it) and/or Adding a "Confirm…
I am trying to create a skill tracker in Canvas for a veterinary technology program. My students need to perform a technical (Hands On) skill in front of the instructor. I want the student to then submit an assignment, or quiz/survey answering a few questions about the specific scenario. The assignment/Quiz is ust to…