Excel-Like Rounding of Numbers in Microsoft® Access
“I am used to using the ROUND function in Excel to control the number of decimal places in the results of a formula, but I cannot find one in Access. Is there one?”
Last updated on 2024-04-26.
Response
There are a number of functions in Access that perform rounding, but none of these works in the same way as Excel's ROUND function.
For a full description of these functions, see Rounding Numbers in Microsoft Excel, Access and VBA.
Excel's ROUND function performs arithmetic rounding
Access's ROUND function performs bankers rounding.
This is an Excel-like rounding function for use in Microsoft Access:
Function fnDmwSymArithRound(Number&, DecPlaces%) As Double
Dim dbl#
dbl# = CDec(Nz(Number&))
dbl# = CDec(dbl# * 10 ^ DecPlaces%)
fnDmwSymArithRound = _
Fix(dbl# + 0.5 * Sgn(Number&)) / 10 ^ DecPlaces%
End Function
Please use the function on the understanding that you let us know of any circumstances under which it does not perform as intended.
Other References
Rounding Numbers in Microsoft Excel, Access and VBA is an article on the whole subject of rounding.
A description of the CDec() function appears in Floating Point Numbers and Scaling.
Your Support for DMW TIPS
Please support this website by making a donation to help keep it free of advertising and to help towards cost of time spent adding new content.
To make a contribution by PayPal in GBP (£ sterling) —
To make a contribution by PayPal in USD ($ US) —
Thanks, in anticipation.
Disclaimer
David Wallis does not accept any liability for loss or damage to data to which any techniques, methods or code included in this website are applied. Back up your data; test thoroughly before using on live data.