Originally posted by: Burnsy
Round rounds to nearest specified number of decimal places. There's a second optional argument to specify the number of decimal places.
More detail here
Originally posted by: Haircut
CInt (number) behaves in the same way.
Apparently it rounds to the nearest even number (presumably it counts 0 as even)
It seems to work in a similar way when rounding to n-decimal places
?round(1.45,1) gives 1.4
?round(1.55,1) gives 1.6
You could always write your own function that works properly.