Evaluating Numbers
Overview
Several Logic Tags are used to evaluate numeric values and output results to the content.
Tags
Values may be Integer, Date, or Float, and can be literal (defined within brackets [1]), variable (set in the template %%set value1 = 1%%
), date part ($customDate.month
), builtin (builtin.today
- without preceding $), or Contact or Custom Data ($customNumber
).
Tag |
|
Parameters | INT: Integer Literal, Variable, Date Part, Custom Data, or Contact Data |
Output | Output the sum of 1 to n integer values. |
Example |
|
| |
Results | 2 |
|
|
Tag |
|
Parameters | FLOAT: Float Literal, Variable, Custom Data, or Contact Data |
P: integer greater than 0 to indicate precision | |
Output | Output the sum of 1 to n integer values with the precision of P values after the decimal. |
Example |
|
| |
Results | 2.5 |
|
|
Tag |
|
Parameters | INT: Integer Literal, Variable, Date Part, Custom Data, or Contact Data |
Output | Output the result of dividing one integer value by another. Float values are returned rounded to the second place. Use EVAL FORMATNUMBER to display the value as desired. |
Example |
|
| |
Results | 2 |
Example |
|
| |
| |
Results | 0.25 |
|
|
Tag |
|
Parameters | EXPRESSION: Mathematical expression using + (add), - (subtract), * (multiply), and / (divide), supported by nested expressions with parenthesis. |
Output | Output the result of the mathematical expression. Float values are returned rounded to the second place. Use EVAL FORMATNUMBER to display the value as desired. |
Example |
|
| |
Results | 5 |
Example |
|
| |
| |
| |
Results | 74.32 |
|
|
Tag |
|
Parameters | FORMAT: Set variable with defined format. To define format, use 0 to indicate a decimal "0" value should be displayed. Use # to inidcate a decimal "0" should be dropped. |
VALUE: Integer or Float Literal, Variable, Date Part, Custom Data, or Contact Data | |
Output | Output the result of applying a specified number format to a value. Numbers will be rounded up when decimals are dropped. |
Example |
|
| |
| |
Results | 12,342,342.00 |
Example |
|
| |
| |
Results | 12,342,342 |
Example |
|
| |
| |
Results | 12342342 |
|
|
Tag |
|
Parameters | INT: Integer Literal, Variable, Date Part, Custom Data, or Contact Data |
Output | Output the larger of two integer values. |
Example |
|
| |
Results | 8 |
|
|
Tag |
|
Parameters | INT: Integer Literal, Variable, Date Part, Custom Data, or Contact Data |
Output | Output the smaller of two integer values. |
Example |
|
| |
Results | 2 |
|
|
Tag |
|
Parameters | INT: Integer Literal, Variable, Date Part, Custom Data, or Contact Data |
Output | Output the remainder of dividing one integer value by another. |
Example |
|
| |
Results | 2 |
|
|
Tag |
|
Parameters | VALUE: Integer or Float Literal, Variable, Date Part, Custom Data, or Contact Data |
Output | Output the result of multiplying one to n integer values together. Supports both integer and float values. Float values are returned rounded to the second place. Use EVAL FORMATNUMBER to display the value as desired. |
Example |
|
| |
Results | 2 |
Example |
|
| |
| |
Results | 7.5 |
|
|
Tag |
|
Parameters | INT: Integer Literal, Variable, Date Part, Custom Data, or Contact Data |
Output | Output a random integer value between the two defined integer values. |
Example |
|
| |
| |
Results | A random number between 1 and 8 |
|
|
Tag |
|
Parameters | INT: Integer Literal, Variable, Date Part, Custom Data, or Contact Data |
Output | Output the result of subtracting one integer from another. |
Example |
|
| |
Results | 2 |
|
|
Tag |
|
Parameters | FLOAT: Float Literal, Variable, Custom Data, or Contact Data |
P: Integer greater than 0 to indicate precision | |
Output | Output the result of subtracting one float value from another. |
Example |
|
| |
Results | 2.5 |