J
Johnie Karr
Hello,
//Begin Quote
The Round function utilizes round-to-even logic. If the expression that you
are rounding ends with a 5, the Round function will round the expression so
that the last digit is an even number. For example:
Round (12.55, 1) would return 12.6 (rounds up)
Round (12.65, 1) would return 12.6 (rounds down)
Round (12.75, 1) would return 12.8 (rounds up)
In these cases, the last digit after rounding is always an even number. So,
be sure to only use the Round function if this is your desired result.
//End Quote
If the number before the 5 is even it will round down, if the number before
the even is odd it will round up.
Does anyone know a work-around for this issue?
Thanks,
//Begin Quote
The Round function utilizes round-to-even logic. If the expression that you
are rounding ends with a 5, the Round function will round the expression so
that the last digit is an even number. For example:
Round (12.55, 1) would return 12.6 (rounds up)
Round (12.65, 1) would return 12.6 (rounds down)
Round (12.75, 1) would return 12.8 (rounds up)
In these cases, the last digit after rounding is always an even number. So,
be sure to only use the Round function if this is your desired result.
//End Quote
If the number before the 5 is even it will round down, if the number before
the even is odd it will round up.
Does anyone know a work-around for this issue?
Thanks,