Round Numbers is used to perform various kinds of rounding operations such as (up, down, ceiling, floor, half up, half down, half even, half ceiling & half floor) on floating point numbers. You can select the number of digits (precision) to round by as well.
The Rounding of numerical value means replacing it by another number that is approximately equal, but less precise. It is often used for reporting and communication purposes.
Select the rounding type you want to use. Checkout the types of rounding.
Input: 1.234, Precision: 2
1.24
Input: 1.234, Precision: 2
1.23
Input: 1.234, Precision: 2
1.24
Input: 1.234, Precision: 2
1.23
1.23
1.24
1.23
1.24
1.23
1.24
1.23
1.24
1.23
1.24
Choose the precision you want to use during the rounding operation.
The examples below assume an input of 1.234 and a Up (Away from Zero) Rounding operation1.3
1.24
Comments 0