Flexible Substraction
Hello, newbie here. I would like some help on how to achieve subtraction that will not reflect negative on the third field (Execution Score) if the first field (Weight Total) has greater value than the second (Achievement).
Here are the scripts that I used to do the substraction. Your help is much appreciated.
1st field
var v1 = getField("1.7").value;
2nd field
var v2 = getField("2.7").value;
3rd field
v1 = getField("1.7").value;
v2 = getField("2.7").value;
event.value = v1 - v2;
