You can't use the Ceiling and Floor functions as they are Excel functions not
Access functions. (Well, you can, but it's not pretty).
Ceiling:
-Int(-FieldValue)
That works to give the next integer value for positive numbers.
If you want to get the ceiling for other than just the next integer (by 5 or .2
or whatever) then the formula is:
-Int(-FieldValue * (1/Increment))/(1/Increment)
Just substitute your ceiling increment for the increment. So for the next 5
That works to give the integer value for positive numbers
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.