Use this when you want to snap a number to the nearest integer within a flow using elementary school logic, for example rounding a calculated unit count to a whole number.
Inputs
Name | Abbreviation | Type | Access | Description |
Number | N | Number | Item | The number to round |
Outputs
Name | Abbreviation | Type | Access | Description |
Rounded | R | Number | Item | The rounded number |
How to
Feed in a number for the minimum, maximum, and seed
The result is the rounded number, using elementary school logic
The number will round down if less than .5
The number will round up if .5 or greater
ex: 3.14 → round → 3
ex: 3.75 → round → 4
ex. 3.5 → round → 4

