Answered
Sum two fields then Divide by 2
(JJPC MCKTOTAL1 + JDPC MCKTOTAL1)/2
Can someone provide a Script for me to evaluate?
Thank you
(JJPC MCKTOTAL1 + JDPC MCKTOTAL1)/2
Can someone provide a Script for me to evaluate?
Thank you
The basic structure of the script would be:
var v1 = Number(this.getField("FieldName1").valueAsString);
var v2 = Number(this.getField("FieldName2").valueAsString);
event.value = (v1+v2)/2;
Already have an account? Login
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.