Copy link to clipboard
Copied
I want to do a simple calculation. A number field (quantity) multiplied by a specific dollar amount for a total cost.
Is there a Java Script for that?
Yes. For example:
event.value = Number(this.getField("Quantity").value) * 5;
Copy link to clipboard
Copied
Yes. For example:
event.value = Number(this.getField("Quantity").value) * 5;
Copy link to clipboard
Copied
That worked, Thanks!
Find more inspiration, events, and resources on the new Adobe Community
Explore Now