Skip to main content
Participant
December 18, 2019
Answered

Simple Adobe Calcuation (Deposit calculations)

  • December 18, 2019
  • 1 reply
  • 507 views

I need help creating a simple calcuation for deposit terms.

All the deposits will be based of a Guaranteed Minimum.

First Deposit (20%)

Second Deposit (50%)

Final balance (30%).

 

I cant seem to figure out how to calcualte it.

 

Can anyone help?

This topic has been closed for replies.
Correct answer try67

Then you can use this code as the custom calculation script of the first field, for example:

 

event.value = Number(this.getField("Guaranteed Minimum").valueAsString) * 0.2;

1 reply

try67
Community Expert
Community Expert
December 18, 2019

What's the name of the "Guaranteed Minimum" field?

Participant
December 18, 2019

"Guaranteed Minimum"

try67
Community Expert
try67Community ExpertCorrect answer
Community Expert
December 18, 2019

Then you can use this code as the custom calculation script of the first field, for example:

 

event.value = Number(this.getField("Guaranteed Minimum").valueAsString) * 0.2;