Hi,
you did not understand the properties
This
CommercialDevicesSV_SQ001.shown == “A1” (A1 for “Ja”)
would be correct if the text of the answer option was "A1".
See the manual
QCode resp. QCode.code
der ausgewählte Antwortcode für die Frage, wenn er relevant ist (sonst leer), oder der Textwert, wenn es sich nicht um eine codierte Frage handelt
Means: If it is a closed question (with codes) (list(radio), array, etc.) this returns the code ("1" or "5" or "AO01"); if it is an open question (short text. etc) it returns the entered text
QCode.shown
der Anzeigewert für die Frage
Means: in a closed question it returnes the "label", ("sehr gut", "Ja",...)
QCode.value
der Bewertungswert für die Frage, wenn er relevant ist (sonst leer), oder der Textwert, wenn dies nicht der Fall ist
Means
Means: If it is a closed question (with codes) (list(radio), array, etc.) this returns the assessment value (if it is used); if it is an open question (short text. etc) it returns the entered text
The best to learn is:
Create questions (list(radio), multiple, array)
and in a question of type "text display" you show all properties.
This way you see which values are returned.
So either you say
Q1=="A1" (BTW: Why these alphanumeric codes, instead of 1="Ja", 2="Nein")
or
Q1.shown=="Ja"
Joffm