Answered
Convert IF function into Custom Calculation Script
Can anyone help me with converting "IF(Line7<Line8)Line7,Line8" into a Custom Calculation Script?
Can anyone help me with converting "IF(Line7<Line8)Line7,Line8" into a Custom Calculation Script?
var L7 = Number(this.getField("Line7").value);
var L8 = Number(this.getField("Line8").value);
event.value = (L7<L8) ? L7 : L8;
Already have an account? Login
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.