vote up 2 vote down star

Guys,

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

flag

75% accept rate

2 Answers

vote up 8 vote down check
double ROUNDUP( double number, int digits )
  {
     return Math.Ceiling(number * Math.Pow(10, digits)) / Math.Pow(10, digits);
  }
link|flag
vote up 1 vote down

Math.Ceiling is what you're looking for.

link|flag
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 at 20:33
Math.Ceiling(474.87212666666666666666666666667) returns 475 which is not what I want. – Ding Jun 30 at 20:34
1  
Math.Ceiling(474.87212666666666666666666666667*100)/100 works. thank you both – Ding Jun 30 at 20:35

Your Answer

Get an OpenID
or

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