This function MRound
does not exist in MS Access and you can't just install it.
I am trying to use the mround
function in an Access
report. The function is not listed in the expression
builder box of built in functions. When I use the
calculation, for example, =mround([AmountDue],0.05)
, and
run the report, it asks for a parameter mround
.
You could define your own in a public VBA Module, e.g.:
Alternatively, add a reference to the Microsoft Excel Object Library to your VBA Project (Tools > References) and define the
MRound
function in a public VBA module as: