Skip to main content
Rounds to the next highest integer. Any number with a fractional part is pushed up to the next whole number, even if it is only just above it, so 4.1 becomes 5. A number that is already whole stays the same. Use this when you must always round up, for example working out how many shipping boxes you need for a quantity of items.

Fields

This mapper has no settings to configure. Point it at the number you want to round and it does the rest.

Sample data

FieldValue
(no settings)
Input:
{
    "weight": 4.1
}
Output:
{
    "weight": 5
}