Column Numbers Changing for No Reason - Help!
- January 8, 2025
- 1 reply
- 1301 views
Hello,
I'm working on a fillable form (attached). I'm using Adobe Acrobat.
As I am testing it, the Monthly Desired Income (column) dollar amounts show up properly. However when I move to the next column (Social Security) and input a number (1.5%), the Monthly Desired Income numbers change automatically (to two $8000 but it should be $8000 and then $8240). My screenshot is attached. I do not want this automatical change.
The current script for the Monthly Desired Income is:
var v1 = event.target.value = this.getField("Objective70").value;
var v2 = event.target.value = this.getField("Objective71").value;
var v3 = 0.01
var v1_2 = v1*v2;
var v3_4 = v1_2*v3;
if (v3_4==0) event.value = "";
if (v2==0) event.value = event.target.value = this.getField("Objective72").value;
else event.value = v2 + v3_4;
A screenshot of this is also attached. I need the Monthly Desired Income column to perform this calculation as well as be editable (i.e. someone may need $8000 at age 65 and then at age 90 they may need only need $9000 even though the automatic calculation will say $16750).
Help, how can I fix this? What is the proper custom calculation script?
I appreciate your time!
