If I do Math.Round(95.55555555,2) in VB.NET, the result is 95.56, but I want it the result the be 95.55. Is there a way to do this in VB.NET? I guess I just want to keep the decimal places, but not round them
|
|
|||
|
Looks like |
|||
|
|
|
Try using Or, if you want to round to a specific number of decimals:
|
|||||||||||
|
|
There are several ways to do this. One would be to subtract 0.05 from the number then use A better way is probably
That just multiplies the number by 100 and truncates it, giving you an integer value with the digits you want, then divides by 100 to turn it back to a decimal. |
|||||||||||
|
|
You don't want Math.Round. You want Math.Truncate.
Your result will be 95.55. |
|||
|
|
|
You can use this:
sorry this is C#, but you can easily guess how to translate in vb I think. |
|||
|
|
|
|||
|
|
Math.Round(95.55666666,2)to round to 95.55 or 95.56? Are you actually rounding or just cutting it off after x precision? – Aaron W. Mar 30 '11 at 16:05