해결됨
Subtraction javascript
I am currently using the below formula for subtraction. However, if "FieldB.0" is empty, I do not want the script to run. When ever "FieldA.0" is filled in, it is still returning the value. I know I need to use an "if" in the script but I do not know how to do that.
var v1 = getField("FieldA.0").value;
var v2 = getField("FieldB.0").value;
event.value=v1-v2;
