Round Down
Round down to the nearest integer.
You can also use Round (closest integer), Round Up, or Round Decimal Places.
Input
| Field | Definition | Type | Required |
|---|---|---|---|
| number | Number whose value is rounded down to the nearest integer. | Number | TRUE |
Output
| Field | Definition | Type |
|---|---|---|
| output | Returned rounded down value of an input number. | Number |
Example
For a number input value of 0.95 the output is 0.
For a number input value of 1.25 the output is 1.
For a number input value of 3.0001 the output is 3.
