up vote 3 down vote favorite
share [g+] share [fb]

in Excel, =ROUNDUP(474.872126666666, 2) -> 474.88
in .NET,

Math.Round(474.87212666666666666666666666667, 2, MidpointRounding.ToEven) // 474.87
Math.Round(474.87212666666666666666666666667, 2, MidpointRounding.AwayFromZero) // 474.87

My client want Excel rounding result, is there any way I can get 474.88 in .NET?

Thanks a lot

link|improve this question

feedback

2 Answers

up vote 10 down vote accepted
double ROUNDUP( double number, int digits )
  {
     return Math.Ceiling(number * Math.Pow(10, digits)) / Math.Pow(10, digits);
  }
link|improve this answer
feedback

Math.Ceiling is what you're looking for.

link|improve this answer
1  
Note that OP will need to multiply by 100 before performing Math.Ceiling and then divide by 100, since you can't specify # of decimal points with this function. – Michael Bray Jun 30 '09 at 20:33
Math.Ceiling(474.87212666666666666666666666667) returns 475 which is not what I want. – Ding Jun 30 '09 at 20:34
2  
Math.Ceiling(474.87212666666666666666666666667*100)/100 works. thank you both – Ding Jun 30 '09 at 20:35
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.