Various mathematical calculations may be carried out in your survey through aytm Logic. Learn more about aytm Logic in the Lighthouse Academy.

Supported list of operations with aytm Logic
- Addition [result = 36 + 7]
- Subtraction [result = 36 - 7]
- Multiplication [result = 36 * 7]
- Division (expect floating-point values) [result = 36 / 7]
- Exponentiation [result = 36 ** 3] [result = 36 ^ 3]
- Exponentiation of Euler's number (expect floating-point values) [result = exp 3]
- Concatenation (for strings) [result = "Promoter " + "and influencer"]
- Rounding a number: [result = round 3.1415] will result in 3
- Rounding a number to a specific decimal place: [result = round2 3.1415] will result in 3.14
- Rounding up a number: [result = ceil 3.1415] will result in 4
- Rounding up a number to a specific decimal place: [result = ceil3 3.1415] will result in 3.142
- Rounding down a number: [result = floor 3.1415] will result in 3
- Rounding down a number to a specific decimal place: [result = floor1 3.1415] will result in 3.1 and is compatible with floating point numbers [z = 0.1 + 1.1 + .1]
|