Skip to main content
Gets the absolute value for an integer or float. This removes the minus sign from a number, so a negative number becomes positive and a positive number stays the same. Use this when you only care about the size of a value, not its direction, for example turning a negative stock adjustment of -42.5 into a plain 42.5.

Fields

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

Sample data

FieldValue
(no settings)
Input:
{
    "balance": -42.5
}
Output:
{
    "balance": 42.5
}