Copy link to clipboard
Copied
I'm using Adobe Acrobat Pro 2017.
I want the form to calculate an amount (bonus) if a specific box is checked. If the box isn't checked, then no calculation is required.
So far I have: event.value = this.getField("Salary").value * 25 / 100.0 which calculates the bonus (field called BonusTotal) as soon as a salary is entered, however, I don't want to see a bonus if the checkbox (called Bonus) is unchecked. What am I missing? Thank you!
Before calculating check that checkbox is checked, something like this:
if(this.getField("Bonus").isBoxChecked(0))
event.value = this.getField("Salary").value * 25 / 100.0;
else
event.value = "";
Copy link to clipboard
Copied
Before calculating check that checkbox is checked, something like this:
if(this.getField("Bonus").isBoxChecked(0))
event.value = this.getField("Salary").value * 25 / 100.0;
else
event.value = "";
Copy link to clipboard
Copied
THANK YOU! I've searched for hours!
Copy link to clipboard
Copied
Awesome, I used this to calculate GST for GST registered suppliers and just changed it so it calculated 15% GST if box what ticked:
if(this.getField("CheckBox1").isBoxChecked(0))
event.value = this.getField("Total").value * 0.15;
else
event.value = "";
Find more inspiration, events, and resources on the new Adobe Community
Explore Now