Hi,
I have a table in LimeSurvey question text, where I have to show all the 5 sub-question values (A1, A2, A3, A4, A5) along with the sub-question text of a array(number) question L42024PriceA_Q1, highlighted below in yelllow, on a condition.
Condition is :
if the random value generated(random1_SQ001) is equal to 1, then show all 10 values, the 5 fixed as subquestion text
and other 5 filled in by respondent as L42024PriceA_Q1_A1, L42024PriceA_Q1_A2, L42024PriceA_Q1_A3, L42024PriceA_Q1_A4 and L42024PriceA_Q1_A5
the issue is applying the IF condition :
I can only show one of those values in the following syntax:
{if((random1_SQ001==1),L42024PriceA_Q1_A1.shown)} - this works
Do you know what would be the syntax to show all 5 values?
{(if((random1part3gp1==1),L42024PriceA_Q1_A1.shown))L42024PriceA_Q1_A2.shown,L42024PriceA_Q1_A3.shown, L42024PriceA_Q1_A4.shown, L42024PriceA_Q1_A5.shown} - this does not work
thank you!