View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.misc
David Biddulph[_2_] David Biddulph[_2_] is offline
external usenet poster
 
Posts: 8,651
Default Need help with rounding

=IF(MOD(A1,1)<=0.09,INT(A1)+0.09,IF(MOD(A1,1)<=0.4 9,INT(A1)+0.49,INT(A1)+0.99))

Note that you didn't specify what happens to inputs between 0.09 and .10,
between .49 and .50, and between .99 and .00.
--
David Biddulph

"SUSAN" wrote in message
...
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!