Reveb wrote: Just adding )) won't work. It will make the last one wrong saying it doesn't support 2 arguments
I guess the problem is that you HAVE to give the "else" part.
Try something like this:
{if(score==0, "Your score is 0 out of 100",)}
{if(score==1, "Your score is 10,6 out of 100",)}
{if(score==2, "Your score is 17,5 out of 100",)}
{if(score=

, "Your score is 21,9 out of 100",)}
{if(score==10, "Your score is 37 out of 100",)}
Code:
{if(Psych == 0, 'Your score is 0 out of 100', if(Psych == 1, 'Your score is 10,6 out of 100', if(Psych == 2, 'Your score is 17,5 out of 100','Something went really, really wrong')))}
I guess the complete code would be this:
Code:
{if(Psych == 0, 'Your score is 0 out of 100', if(Psych == 1, 'Your score is 10,6 out of 100', if(Psych == 2, 'Your score is 17,5 out of 100', if(Psych==3, 'Your score is 21,9 out of 100','Your score is 37 out of 100'))))}
This of course will only work if 0, 1, 2, 3 and 10 are the ONLY results possible, because we don't check for the 10 at the end and just assume if it isn't 0, 1, 2 or 3 it must be 10.