Dear All,
Here what I have done and I want to Q16 auto rank number:
Select Question Q1 to Q11 use the same list. It's name "List1":
=> Predefine list (List1): |1|2|3|4|
Ranking Question Q12, I have created a new Predefine list name "List2":
=> Predefine list (List2): |Q1|Q2|Q3|Q4|Q5|Q6|Q7|Q8|Q9|Q10|Q11|
=> Constrution List of Q12 name "Q12ConList" and Parent list is "List2" with script below:
Begin Unverified Perl
if(VALUE("Q1")==1)
{
ADD("List2",1);
}
if(VALUE("Q2")==1)
{
ADD("List2",2);
}
......
......
if(VALUE("Q11")==1)
{
ADD("List2",11);
}
End Unverified
Ranking Question Q13, use the same Parent List (List2)
=> Constrution List of Q13 name "Q13ConList" with script below:
Begin Unverified Perl
if(VALUE("Q1")==2)
{
ADD("List2",1);
}
if(VALUE("Q2")==2)
{
ADD("List2",2);
}
......
......
if(VALUE("Q11")==2)
{
ADD("List2",11);
}
End Unverified
Ranking Question Q14, use the same Parent List (List2)
=> Constrution List of Q14 name "Q14ConList" with script below:
Begin Unverified Perl
if(VALUE("Q1")==3)
{
ADD("List2",1);
}
if(VALUE("Q2")==3)
{
ADD("List2",2);
}
......
......
if(VALUE("Q11")==3)
{
ADD("List2",11);
}
End Unverified
Ranking Question Q15, use the same Parent List (List2)
=> Constrution List of Q15 name "Q15ConList" with script below:
Begin Unverified Perl
if(VALUE("Q1")==4)
{
ADD("List2",1);
}
if(VALUE("Q2")==4)
{
ADD("List2",2);
}
......
......
if(VALUE("Q11")==4)
{
ADD("List2",11);
}
End Unverified
Ranking Question Q16, use the same Parent List (List2)
=> Constrution List of Q16 name "Q16ConList" and Parent list is "List2" with script below:
AIE(Q12,1)
AIE(Q12,2)
AIE(Q12,3)
AIE(Q12,4)
AIE(Q12,5)
AIE(Q12,6)
AIE(Q12,7)
AIE(Q12,8)
AIE(Q12,9)
AIE(Q12,10)
AIE(Q12,11)
AIE(Q13,1)
AIE(Q13,2)
AIE(Q13,3)
AIE(Q13,4)
AIE(Q13,5)
AIE(Q13,6)
AIE(Q13,7)
AIE(Q13,8)
AIE(Q13,9)
AIE(Q13,10)
AIE(Q13,11)
AIE(Q14,1)
AIE(Q14,2)
AIE(Q14,3)
AIE(Q14,4)
AIE(Q14,5)
AIE(Q14,6)
AIE(Q14,7)
AIE(Q14,8)
AIE(Q14,9)
AIE(Q14,10)
AIE(Q14,11)
AIE(Q15,1)
AIE(Q15,2)
AIE(Q15,3)
AIE(Q15,4)
AIE(Q15,5)
AIE(Q15,6)
AIE(Q15,7)
AIE(Q15,8)
AIE(Q15,9)
AIE(Q15,10)
AIE(Q15,11)
***** For Q16 I want to Auto Rank follow above script.
Is it possible? Hope you understand and help to fix.