Created
December 10, 2014 21:13
-
-
Save wizard04wsu/8a50b609f7f1029c48ac to your computer and use it in GitHub Desktop.
MS Access VBA query function to apply CDec() to a number field (helps avoid rounding errors)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Function CDecForQuery(val) | |
CDecForQuery = CDec(val) | |
End Function |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment