Answered
Calculation in PDF Fillable Form
Cannot figure out how get the calculation for:
80% up to $1 million, 75% for loan amounts > $1 million > $1.5 million
Cannot figure out how get the calculation for:
80% up to $1 million, 75% for loan amounts > $1 million > $1.5 million
OK, then you can use this code the for field where you want to show the result:
var loanAmount = Number(this.getField("Loan Amount").valueAsString);
if (loanAmount<=1000000) event.value = "80%";
else event.value = "75%";
Edit: fixed a typo in the code...
Already have an account? Login
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.