Is there an easy way to see if an instructor is using new quizzes? I am trying to compile a report on new quiz usage in our organization. Thanks.
If you have access to Canvas Data in a relational database, you could use a SQL query like the following. This includes every teacher enrolled in a course where there's some New Quizzes submission.
SELECT COUNT(DISTINCT e.user_id) AS teachersFROM enrollment_dim eJOIN assignment_dim a ON a.course_id = e.course_id JOIN submission_dim s ON s.assignment_id = a.id JOIN external_tool_activation_dim t ON t.id = a.external_tool_idWHERE t.name = 'Quizzes 2' /* This is the tool's name in our Canvas Data table */AND s.submitted_at IS NOT NULL /* Filter to completed attempts */AND e.type = 'TeacherEnrollment' /* This gets custom roles as well as the built-in Teacher role */AND e.workflow_state = 'active'
Hey everyone, I didn't see a post about this in my quick perusal of the forums, but I'm wondering if anyone is having issues with Canvas becoming unresponsive. I'm probably the most savvy person with Canvas at my school, so I don't have anyone I can ask. Over the past week I've been getting a variety of errors. Here are…
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…