Syntax
FLOOR(number)
Usage examples
Example 1
Input | 1 { 2 "my_action": { 3 "message": 1.2 4 } 5 } |
Formula | FLOOR(my_action.message) |
Output | 1 |
Example 2
Input | 1 { 2 "my_action": { 3 "message": 2 4 } 5 } |
Formula | FLOOR(my_action.message) |
Output | 2 |
Example 3
Input | 1 { 2 "my_action": { 3 "message": 67.28 4 } 5 } |
Formula | FLOOR(my_action.message) |
Output | 67 |
Example 4
FLOOR will also work on text that only contains a number:
Input | 1 { 2 "my_action": { 3 "message": "3.5" 4 } 5 } |
Formula | FLOOR(my_action.message) |
Output | 3 |
Sample Actions
Event Transform
My Action
Event Transform
FLOOR
Select an Action to inspect.
You can also click "Copy Actions" and paste them in your Tines Story to see how they work.