Answered
How to I divide the amount in box 1 with box 2 and then show the percentage in box 3?
How to I divide the amount in box 1 with box 2 and then show the percentage in box 3?

How to I divide the amount in box 1 with box 2 and then show the percentage in box 3?

Use this code as the custom calculation script of "Box 3":
var v1 = Number(this.getField("Box 1").valueAsString);
var v2 = Number(this.getField("Box 2").valueAsString);
if (v2==0) event.value = "";
else event.value = v1/v2;
Already have an account? Login
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.