Please help us help you and fill where relevant:
Your LimeSurvey version: 5.6.25
Survey theme/template: Vanilla Theme
==================
Hi!
I'm a relatively new to LimeSurvey so the answer to this might be very obvious to some but I couldn't find the info elsewhere: I'm setting up a survey that contains an assessment part for which I am using the array by column question type. So, this assessment contains sub-questions with multiple answer options, but there's only one correct answer for each sub-question. At first I thought that I could add an assessment value to each correct answer, but this does not take into account the column under which the answer is selected (there's only one correct answer per column and per row, and each correct answer increases the participants' score by 1).
From what I've found, I can instead set this condition:
{sum(
IF(Q1_SQ001 =="A",1,0),
IF(Q1_SQ002=="B",1,0),
IF(Q1_SQ003=="X",1,0),
IF(Q1_SQ004=="Y",1,0)
)}
However, I could not find any information about whether this score will be stored in the final data file, or how I would need to go about storing the score, or if it's even possible to store the score or whether it's just something used for feedback purposes. How would I go about storing the score with the rest of the data (if that's possible)?