Skip to content

Instantly share code, notes, and snippets.

@wizard04wsu
Created December 10, 2014 21:13
Show Gist options
  • Save wizard04wsu/8a50b609f7f1029c48ac to your computer and use it in GitHub Desktop.
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)
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