Javascript Calculations not working for me.
I have set up form fields to automatically populate calculations once numbers are entered into some of the other fields on the form. Everything is working except for the last formula:
var v12 = getField("Out of Pocket Investment").value;
var v10 = getField("Opt 3 Monthly Payment").value;
var v11 = getField("Opt 3 # of Months").value;
event.value = (v12 - v10 * v11) * .75 ;
Any thoughts as to why this is not working for me?
