Round Down

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Is there a function in Access that allows Rounding Down? In Excel you can
type in RoudDown to achieve this, but when I tried in Access I received an
error.

Thanks,
 
If you want to round down to the next integer, use the Int() function.

Debug.Print Int(123.8) = 123
 
Hi

You can use
Int([FieldName])

The opposit would be
-Int(-[FieldName])

Hope this helps
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top