So I have this script(see below) in another form. Instead of subtraction, I want it to multiply "Rent_20" by 12.
var res = +this.getField("Rent_20").value - +this.getField("TotalAnnualExpenses0").value;
if (res != 0) {
event.value = res;
}
else {
event.value = "";
}