Thank you for taking interest in my post but I am sorry it's not what I mean. My Q2 is text display question and I want the "question" to be displayed or show up in the text display line only if the answer to Q1 sq001 is A1 or Q1 sq002 is A1.
I was able to show the question by using this code "{Q1_SQ001.question}" but I don't know how to insert the condition --- Type q1_sq001.question if q1_sq001 == A1... Please help me how to do that in limesurvey language. Thank you.
So, your text for the question could be something like:
Code:
You said you love {if(Q1_SQ001 == 'A1', Q1_SQ001.question, '')}{if(Q1_SQ001 == 'A1' AND Q1_SQ002 == 'A1', ' and ', '')}{if(Q1_SQ002 == 'A1', Q1_SQ002.question, '')}.
Cheers,
Tony Partner Solutions, code and workarounds presented in these forums are given without any warranty, implied or otherwise.