Thread: Rounding
View Single Post
  #4   Report Post  
Posted to microsoft.public.excel.worksheet.functions
David Biddulph[_2_] David Biddulph[_2_] is offline
external usenet poster
 
Posts: 8,651
Default Rounding

If you really want to round up after .49, and down for values below .49 ,
then =INT(A1)+(MOD(A1,1)0.49)
This would round up for .495
You may need to think about how you want to treat negative numbers.

If you just want to round up for .5 and upwards, and down for values below
..5, then =ROUND(A1,0)
--
David Biddulph

"Lime" wrote in message
...
Hello
Can someone Help me.. I'm stuck!!
can you tell me the formula for round up...after .49? if the number is
7.6..
I want to round to 8.

Any help is greatly appreciated...

Lime