Help with creating a Javascript for a field in a PDF form
I have three fields in a PDF form and I need to calculate one of the fields using the other two fields. Please see below:
Field A is a user input numeric field of format $12345.67
Field B is a user input numeric field of format 12345.678
Field C is a calculated numeric field of format $12345.67
I need the following formula as a Javascript for Field C:
C=A*(1-(B/100)) example: $4500*(1-(1.059/100)) go to Field C ($4452)
Thank you!
