Copy link to clipboard
Copied
I am trying to make a form that uses an input field (Estimated Sales Price of Current Residence) to calculate the Guaranteed Homesale Program value, which is Estimated sales price of current residence x .15. But if the Estimated sales price of Current Residence is more than $750,000, then I want Guaranteed Homesale Program field to equal 0. I tried the following but an getting errors.
var n = this.getField("Estimated Sales Price of Current Residence").value;
if (n < 750000) {event.value = ("Estimated Sales Price of Current Residence * .15");}
else if (n > 750000) {event.value = "0";}
Use this:
if (n < 750000) {event.value = n * 0.15;}
else if (n > 750000) {event.value = 0;}
Copy link to clipboard
Copied
Use this:
if (n < 750000) {event.value = n * 0.15;}
else if (n > 750000) {event.value = 0;}
Copy link to clipboard
Copied
Thank you!!! If I want to limit the return value to $10,000 how would I also include that?
Copy link to clipboard
Copied
if (n <= 750000) {
n = n * 0.15;
if (n > 10000) n = 10000;
event.value = n;
}
else event.value = 0;
Find more inspiration, events, and resources on the new Adobe Community
Explore Now