Need help with rounding
Couple of way to do this
=if(mod(a1,1)<=.09,int(a1)+.09,if (mod(a1,1)<=.49,int(a1)+.49,int(a1)+.99))
would be the way I'd do it.
"SUSAN" wrote:
I have a rounding question. i need to do the following:
Round:
$#.00 - $#.09 round up to $#.09
$#.10 - $#.49 round up to $#.49
$#.50 - $#.99 round up to $#.99
Examples: 11.05 would round to 11.09
25.36 would round to 25.49
5.60 would round to 5.99
Is there a way to do this?
Thank you!
|