Percentage Payment Calculator
Definte variables to be used in calculations, like a payment calculator.
Copy templates to use them anywhere:
Did you know that with Text Blaze, you can define variables and use them in formulas to complete calculations?
The example below shows how you can create variables for a payment and a percentage, and then determine the payment amount dynamically.
All you have to do is type your initial amount and the percentage, and then the payment amount is automatically calculated.
Percentage Payment Calculator
Input total amount: ${formtext: name=amount; default=3000; cols=10}
Input your percentage: {formtext: name=percentage_input; default=75; cols=10}%{percentage=percentage_input / 100}
Your payment due amount is {=amount*percentage; format=,.2f}
Your payment due amount is {=amount*percentage; format=,.2f}
_