I am trying to sum numbers from 2 text box and the result to a 3rd text box in a PDF Form (Property of text Boxes set to multiline)
Tried the following code but it is not working to add the values and display the results in each row.
var values1 = this.getField("Text6").value.split("\n");
var values2 = this.getField("Text7").value.split("\n");
this.getField("Text8").value = (values1 + values2 );
Unfortunately this is not working.Can someone help me on this?
Expected output below enter image description here