I seems as if this respons comes only, for the choice "Other in the dropdown (a not-in question setting). Also the choice "Other" results in an extra question that prompts the respondent to elaborate on "Other". This elaboration does not have a qid how is that?
Exactly.
If you use the "Other" option in your question LS uses the code "-oth-" to store this.
Which code do you expect? LS can't know how you coded the answer options.
And how do you expect the "Other" to be captured. There has to be a text field to enter the answer.
And in the next column (called "QCode_other") the verbatim of this "Other" ist stored.
If you want to display the text of the given answer for the "normal" option and for the "other" option you have to use the IF-statement.
If the code ist "-oth-" diplay the "other" verbatim else display the answer option text.
{if(QCode=="-oth-",QCode_other,QCode.shown)}
Joffm