Hi,
I'm using LimeSurvey 2.00+ and I'm trying to write a validation equation but would like to have the criteria reference the current question so that I can copy and modify it for other situations.
More specifically, for an "Array (Numbers)" question, I would like to use the criteria
(sum(peerEvalFoxes_y1_x1,peerEvalFoxes_y2_x1,peerEvalFoxes_y3_x1,peerEvalFoxes_y4_x1,peerEvalFoxes_y5_x1)==10)
repeatedly in other questions but would like to avoid having to go and change the "peerEvalFoxes" text for each question. Is there a simple way to reference the current question with some kind of variable such as $currentQuestion (i'm just making that term up) so I could use the same text repeatedly, e.g.
(sum($currentQuestion_y1_x1,$currentQuestion_y2_x1,$currentQuestion_y3_x1,$currentQuestion_y4_x1,$currentQuestion_y5_x1)==10)