Copy link to clipboard
Copied
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?
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;
Copy link to clipboard
Copied
What's the name of the "Guaranteed Minimum" field?
Copy link to clipboard
Copied
"Guaranteed Minimum"
Copy link to clipboard
Copied
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;