Whenever the decimal remainder is less than .56 I want to round down (normally decimals between and including 0.50 to 0.55 would round up).
for example:
4,55 rounds down to 4, and
4,56 rounds up to 5
I have a lot of numbers (8,55;13,56;…)
Thank you
Interesting way of rounding but there are multiple solutions:
The ‘clean’ way to do it:
The short and nasty way to do it