Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

If the decimal part is 0.1 to 0.12, it rounds down to the next lower integer If the decimal part is 0.13 to 0.37 it rounds to 0.25 If the decimal part is 0.38 to 0.62 it rounds to 0.5 If the decimal part is 0.63 to 0.87 it rounds to 0.75 If the decimal part is 0.88 or more, it rounds up to the next higher integer

share|improve this question

3 Answers

Multiply by 4, round to the nearest integer, divide by 4?

share|improve this answer
In Jet/ACE and VBA the Round() function uses banker's rounding. Does this have an unexpected effect on the results? Also, what does one expect for negative numbers, and does Jet/ACE and VBA's handling of negative numbers match those expectations? – David-W-Fenton May 25 '10 at 18:33
Banker's rounding should be fine. If you have -1.125, 4 times that is -4.5 which rounds to -4, which becomes -1. -1.375 rounds the other way, up to -1.5. They alternate, which is what banker's rounding is supposed to accomplish. 0.375 rounding UP to 0.5 is balanced by 0.625 rounding DOWN to 0.5. 0.875 rounding UP to 1.0 is balanced by 1.125 rounding DOWN to 1.0. It's not even an issue if you are talking about multiples of 0.01 (cents). – Vagrant May 26 '10 at 19:29
In certain scenarios (e.g., a credit memo), you don't want -4.5 to round to -4 but to -5. Access/Jet/ACE rounding rounds up on the number line (in the positive direction), rather than on the absolute quantity involved, and you have to be careful with that (hence my comment). – David-W-Fenton May 26 '10 at 22:26
@Daid-W-Fenton Since which version? "The Round function performs round to even, which is different from round to larger." -- msdn.microsoft.com/en-us/library/se6f2zfx.aspx Debug.Print Round(19.955, 2) 'Answer: 19.95 Debug.Print Format(19.955, "#.00") 'Answer: 19.96 – Remou May 27 '10 at 8:06
OK, either way, you need to understand that you're not getting what you necessarily expect. – David-W-Fenton May 27 '10 at 17:51

There is a general method for this:

  • Multiply your number by 4.
  • Round to the nearest integer.
  • Divide by 4.

In SQL:

ROUND(column * 4) / 4
share|improve this answer

I don't know the exact function name, but basically you use floor(4*x)/4. floor might be called int, to_int, or something like that.

share|improve this answer
My bad, round to the nearest integer, don't use floor. – Adam Crume May 24 '10 at 22:02
1  
Might as well delete the incorrect answer – Joe Philllips May 24 '10 at 22:15
Wrong answer aside, but which versions of Access implement Floor()? – David-W-Fenton May 25 '10 at 18:23

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.