Copy link to clipboard
Copied
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;
Copy link to clipboard
Copied
var L7 = Number(this.getField("Line7").value);
var L8 = Number(this.getField("Line8").value);
event.value = (L7<L8) ? L7 : L8;
Copy link to clipboard
Copied
Thank you!
Find more inspiration, events, and resources on the new Adobe Community
Explore Now