Modify gradebook

Modify gradebook

Filzah Alwi -
Vastausten määrä: 13

We currently need help on modifying the gradebook in moodlev1.96. Pls help me by giving some suggestions or solutions. Thanks.

Vastaus Filzah Alwi

Re: Modify gradebook

Allan Porras -
I need to modifying the gradebook, too. Help me please.
Vastaus Allan Porras

Re: Modify gradebook

Elena Ivanova -
You probably need to hire a programmer.
Try here: http://moodle.org/mod/data/view.php?id=7232 (either search or post) hymy
Vastaus Elena Ivanova

Re: Modify gradebook

Tim Hunt -
Kuva: Core developers Kuva: Documentation writers Kuva: Particularly helpful Moodlers Kuva: Peer reviewers Kuva: Plugin developers
That may be overkill. There are lots of configuration options. Anyway, it really impossible to answer the question until we have some information about how they want to modify the gradebook.
Vastaus Tim Hunt

Re: Modify gradebook

Allan Porras -
Well, I need to show the skills of some categories and not the whole course.
For example. In a course I have level 1, level 2, category 3 and category 4. I need to show the grade to the category 2.

How can I do?

Someone can help me?

I have to present it in school soon.
Vastaus Allan Porras

Re: Modify gradebook

Elena Ivanova -
Allan, I am sorry, it is still unclear on what are you trying to achieve. What do you mean under word level? What is the category to you ? Do you mean group of students? You need to be much more specific.
Vastaus Elena Ivanova

Re: Modify gradebook

Allan Porras -
OK. Let me explain.

My courses I separated through the quarters. Each quarter is a category. Within each quarter I have homework, exams, etc.

I need to generate a report per student to show me the average Quarter 2. Understand me?
I was trying to do the SQL query, but I can not do it. Do not know much about SQL.

On the other hand I thought to a new report moodle, something like 'overvoew report' Basic of moodle.
Vastaus Allan Porras

Re: Modify gradebook

Barry Oosthuizen -
Hi Allan,

Would collapsing the categories be of any benefit to you? Using the '+', '-' or 'o' icons to collapse/expand them.

Another option would be to make use of the Export feature. Untick all grade items except the category you need.

Cheers,

Barry
Vastaus Barry Oosthuizen

Re: Modify gradebook

Allan Porras -
I need that students can see a sheet with the qualifications of a specific course and in summary form.

In other words, students can see:

nombre_alumno / category_name / category_grade

Anyone know?
Vastaus Tim Hunt

Re: Modify gradebook

Elena Ivanova -
Yeah, but in the earlier post Allan wanted to have some new custom report created. I guess I am still lost on what is needed. mixed
Vastaus Elena Ivanova

Re: Modify gradebook

Allan Porras -
I have this SQL query to show students in courses:

SELECT c.id AS courseid, c.fullname, u.firstname, u.lastname
FROM mdl_role_assignments ra, mdl_user u, mdl_course c, mdl_context cxt
WHERE ra.userid = u.id
AND ra.contextid = cxt.id
AND cxt.contextlevel =50
AND cxt.instanceid = c.id
AND roleid = 5;

I have to change to show the grade of a category?


Vastaus Allan Porras

Re: Modify gradebook

Marius Pretorius -
Hello Alan

I also have requirements for generating custom reports - I have written about it in a new thread.

I wonder though, if you would not be able to achieve what you need by exporting a gradebook to Excel and proceeding from there to create your printed reports. This is definitely possible. You will need to create the necessary categories and subcategories in your gradebook with the correct weightings for each category.

In my case I want to combine different courses and somehow get the marks into a custom report. The above solution is therefore not ideal for me.

Greetings
Marius