Round

Syntax

Round(Expression)

Description

Round returns the nearest whole number to the expression. If expression is exactly halfway between two whole numbers, the result is always the even number.

Example

Round(25.4) = 25
Round(25.5) = 26
Round(25.6) = 26
Round(26.5) = 26