I have 1 pass in fields that I'm using to segment the data called SID. Using this variable i have the quota setup.
For eg, my qualification logic is SID=1211, SID= 1212....etc.
Q1: For a question in the survey I want to remove one of the options in a predefined list depending on this SIDs.
Q2: Depending on the SID, I wish to change the text of the question, ive been trying the code below, not sure why isnt it working?
[% Begin Unverified Perl
if (GETVALUE("SID") == 1211 OR GETVALUE("SID") == 1212)
{
return "This is new";
}
else
{
return "This is old";
}
End Unverified %]
This would be of great help. Thanks!!