Question
Help on If statement
I am new to this and i am trying to put a simple if statement into a field based on the value of another field.
Can someone help me correct the below?
var score =this.getfield("PriorityScore").value;
If ((score <5))event.value="Declined";
If ((score >5)&&(score <=9))event.value="Low";
If ((score >10)&&(score <=17))event.value="Medium";
If ((score >18))event.value="High";
Else event.value= "error";
