andy-h
12/10/2014 - 9:13 PM

MS Access VBA query function to apply CDec() to a number field (helps avoid rounding errors)

MS Access VBA query function to apply CDec() to a number field (helps avoid rounding errors)

Function CDecForQuery(val)
    CDecForQuery = CDec(val)
End Function