Various mathematical calculations can be carried out in your survey through aytm Logic. Learn more in the Lighthouse Academy.
Supported Operations
- Addition —
[result = 36 + 7] - Subtraction —
[result = 36 - 7] - Multiplication —
[result = 36 * 7] - Division (returns floating-point values) —
[result = 36 / 7] - Exponentiation —
[result = 36 ** 3]or[result = 36 ^ 3] - Exponentiation of Euler's number (returns floating-point values) —
[result = exp 3] - String concatenation —
[result = "Promoter " + "and influencer"] - Round (standard) —
[result = round 3.1415]→ 3 - Round to decimal places —
[result = round2 3.1415]→ 3.14 - Round up —
[result = ceil 3.1415]→ 4 - Round up to decimal places —
[result = ceil3 3.1415]→ 3.142 - Round down —
[result = floor 3.1415]→ 3 - Round down to decimal places —
[result = floor1 3.1415]→ 3.1 (compatible with floating-point:[z = 0.1 + 1.1 + .1])