Access Round Function

Last updated: August 25, 2026.

The Microsoft Access Round function rounds a numeric expression to a specified number of decimal places.

Syntax

Round(expression [, numdecimalplaces])
ArgumentDescription
expressionRequired numeric value or expression.
numdecimalplacesOptional number of decimal places. The default is zero.

Examples

Round(12.345, 2)       ' 12.34
Round(12.355, 2)       ' 12.36
Round([UnitPrice], 2)  ' Value from an Access field

Access uses banker’s rounding: an exact halfway value is rounded toward the nearest even digit. This can differ from the rule commonly taught as “always round 5 up.” Test financial calculations with representative values, and use a purpose-built expression when a different rounding policy is required.

admin

admin

Leave a Reply

Your email address will not be published.