Ok, would you please just guide me to how to write an equation for group score, and how to present it in the final user report? Just pointing to sources is good enough for me
Without knowing the structure of your survey it is almost impossible to give concrete examples.
E.g. how do we know which answer scores what?
A good starting point is the section about Expression Manager/Script in the manual:
www.limesurvey.org/manual/Expression_Manager
For example, let's say you have saved the scores for each answer option of a question in the assessment values.
Then you can access them via YourQuestionCodeComesHere.value.
Let's say your first group consists of Q1, Q2, Q3, each single choice questions (List Radio I assume), and each has 3 answer options with each having a acessment value:
Q1:
A1 (Acesssment value 5)
A2 (Assessment value 2)
A3 (Assessment value 0)
Q2:
A1 (Acesssment value 1)
A2 (Assessment value

A3 (Assessment value 3)
Q3:
A1 (Acesssment value 0)
A2 (Assessment value 10)
A3 (Assessment value 0)
So you could write an equation to sum up the assessment values within an eqaution type question, something like this:
Code:
{sum(Q1.value,Q2.value,Q3.value)}
This would give you the sum of the assessment values of the answer options your respondent has chosen and would be stored in the equation question, lets call her ScoreG1.
You can later either create an equation that somes all the other equation questions for the total score, or you could even sum up the scores of all questions, at the end the result should be the same.
This should give you a rough idea where to start. Start small, with smaller examples and test fromt he beginning if it makes any sense.
If you have concrete questions, the best ist to attach an example of what you have done as a LSS file (only including what is necessary for the problem, not the whole survey).