ROUND
Rounds to the nearest whole number.
If the fractional portion of the argument is greater than or equal to 0.5, the argument is rounded to the integer with the next higher absolute value. If it is less than 0.5, the argument is rounded to the integer with the lower absolute value.
Syntax: ROUND (
value
)
Example: ROUND ( 23.2 )
Output: 23
Example: ROUND ( 41.5 )
Output: 42
Example: ROUND ( -2.51 )
Output: -3
Last updated
Was this helpful?