Hi,
1. you export the lss file here
2. There are several mistakes in your equation
a. If you have a look at your equation of one row, it says
(is_empty(C12T_C12a_N) or
( ! is_empty(C12T_C12a_N) and count(C12T_C12a_Om, C12T_C12a_Oi, C12T_C12a_A) > 0)
Meaning: Either C12T_C12a_N is empty OR
(C12T_C12a_N is not empty and the number of all OTHER checked checkboxes is greater than 0.
But this is just the opposite of your goal.
If C12T_C12a_N is not empty ALL OTHER checkboxes have to be empty -> their count has to be 0 (or: the total count has to be 1 - only the exclusive checkbox is checked)
I used the second option, because here you can easily use the variable "self", especially with your way to code the subquestions.
b. This equation has to be TRUE for each row.
(is_empty(C12T_C12a_N) or ( ! is_empty(C12T_C12a_N) and count(C12T_C12a_Om, C12T_C12a_Oi, C12T_C12a_A) > 0))
or
(is_empty(C12T_C12b_N) or ( ! is_empty(C12T_C12b_N)and count(C12T_C12b_Om, C12T_C12b_Oi, C12T_C12b_A) > 0))
or
(is_empty(C12T_C12c_N) or ( ! is_empty(C12T_C12c_N) and count(C12T_C12c_Om, C12T_C12c_Oi, C12T_C12c_A) > 0))
You use the OR operator.
Hm, an OR conjunction is TRUE when one part of it is TRUE. This is not what you want to happen.
ALL parts have to be TRUE that the entire equation is TRUE.
Here you have to use the AND operator
An AND conjunction is TRUE when all parts of it are TRUE.
Please, correct this and if there are more questions send the lss export.
Joffm
Reasons, why we ask for lss exports only.
lsq and lsg exports are language sensitive. You can only import tinto a survey with the same base language.
So, to do this, we have to guess the base language, create a survey, create a group to be able to import the lsq. And if we guessed the language wrong, bad luck.
No, please ease the life of us volunteers and send only lss.
Copy the survey, remove everything not related to your problem and export the rest.
Furthermore these lsq or lsg exports don't contain the survey wide settings thayt sometimes are important, too.