Hello,
I want to make an IF/AND Ajax Event that if the first 6 fields == ‘Si’ then to show the rest of the questions, I have the next event but when I run it I get error.
/////Materiales Utilizados//
if ({a1Ha_presenciado_o_sufrido_algun} == ‘Si’ and {a2Ha_presenciado_o_sufrido_algun} == 'Si’and {a3Ha_presenciado_o_sufrido_algun} == 'Si’and {a4Ha_presenciado_o_sufrido_algun} == 'Si’and {a5Ha_presenciado_o_sufrido_algun} == 'Si’and {a6Ha_presenciado_o_sufrido_algun} == ‘Si’)
// Display block
{
sc_block_display(II.Recuerdos persistentes sobre el acontecimiento (durante el último mes), ‘off’);
sc_block_display(III.Esfuerzo por evitar circunstancias parecidas o asociadas al acontecimiento (durante el último mes), ‘off’);
sc_block_display(IV. Afectación (durante el último mes), ‘off’);
}
else // Hide block
{
sc_block_display(II.Recuerdos persistentes sobre el acontecimiento (durante el último mes), ‘on’);
sc_block_display(III.Esfuerzo por evitar circunstancias parecidas o asociadas al acontecimiento (durante el último mes), ‘on’);
sc_block_display(IV. Afectación (durante el último mes), ‘on’);
}