CarolinEkman wrote: In "F", I only want to show sub question with code "SQ001"
Please try to add this into the subquestion relevance field.
Code:
(!is_empty(c2test_SQ001_SQ002.NAOK)
The subquestionrelevance field can have a value of 0 or 1. 1 means display subquestion, 0 means hide subquestion.
So we want the statement getting a value of 1 when the checkbox is ticked.
The "is_empty" function is 1 when the variable c2test_SQ001_SQ002.NAOK is empty.
We want the opposite. The "!" in front of is_empty is the NOT function, which reverse the statement.
If c2test_SQ001_SQ002.NAOK is NOT empty, then show the subquestion.
Code:
(!is_empty(c2test_SQ001_SQ002.NAOK)
You can prevent many mistakes when you change the default naming on the X and Y scale. So not SQ but e.g. SQX and SQY.