Do you have a working Loan Payment formula for a forms custom calc
script? This is what I have so far. Would appreciate a "dumb down"
response-my first go of it.var AnnualRate =
this.getField("Rate");if(AnnualRate == null) app.alert("error interest
rate field");var NumberPayments =
this.getField("Amortization");if(NumberPayments == null)
app.alert("error getting number of payments field");var PresentValue =
this.getField("Loan Amount");if(PresentValue == null) app.alert("error
getting present va...