472,345 Members | 1,538 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 472,345 software developers and data experts.

vb.net 2003 rounding decimal value question

I am using vb.net 2003 professional and I get the following results
when using the round method:

dim Amount as decimal = 180.255
Amount = Amount.Round(Amount, 2)

Amount now contains 180.25. I need it to contain 180.26.

Any ideas?
Nov 20 '05 #1
4 7742
Cor
Hi Spebola,
It is strange,
dim Amount as decimal = 180.255
Amount = Amount.Round(Amount, 2) Amount now contains 180.25. I need it to contain 180.26.


I did try it and the result from me was 180.26, is there maybe a mouse on
your computer eating bits?

This is from MSDN
When d is exactly halfway between two rounded values, the result is the
rounded value that has an even digit in the far right decimal position. For
example, when rounded to two decimals, the value 2.345 becomes 2.34 and the
value 2.355 becomes 2.36. This process is known as rounding toward even, or
rounding to nearest.

Cor
Nov 20 '05 #2
sp*****@swbell.net (spebola) scripsit:
I am using vb.net 2003 professional and I get the following results
when using the round method:

dim Amount as decimal = 180.255
Amount = Amount.Round(Amount, 2)

Amount now contains 180.25. I need it to contain 180.26.

Any ideas?


This code works for me (Windows XP Professional, .NET 1.1):

\\\
Dim Amount As Decimal = 180.255D
Amount = Amount.Round(Amount, 2)
MsgBox(Amount.ToString())
///

Add 'Option Strict On' on top of your source file!

--
Herfried K. Wagner
MVP · VB Classic, VB.NET
<http://www.mvps.org/dotnet>
Nov 20 '05 #3
Hi Spebola,

I can not reproduce the problem,
My test code and result is as follows.
Module Module1
Sub Main()
Dim Amount As Decimal = 180.255
Amount = Amount.Round(Amount, 2)
Console.WriteLine(Amount)
End Sub
End Module
Output: 180.26

Did the problem persists with all number, such as , 180.177,180.173?
You may have a try to see if the problem is a common issue in your machine.
I will appricate the problem.
I look forward to hearing from you.

Regards,
Peter Huang
Microsoft Online Partner Support
Get Secure! www.microsoft.com/security
This posting is provided "as is" with no warranties and confers no rights.

--------------------
From: sp*****@swbell.net (spebola)
Newsgroups: microsoft.public.dotnet.languages.vb
Subject: vb.net 2003 rounding decimal value question
Date: 10 Oct 2003 09:32:51 -0700
Organization: http://groups.google.com
Lines: 9
Message-ID: <b8**************************@posting.google.com >
NNTP-Posting-Host: 65.68.122.33
Content-Type: text/plain; charset=ISO-8859-1
Content-Transfer-Encoding: 8bit
X-Trace: posting.google.com 1065803571 25204 127.0.0.1 (10 Oct 2003 16:32:51 GMT)X-Complaints-To: gr**********@google.com
NNTP-Posting-Date: Fri, 10 Oct 2003 16:32:51 +0000 (UTC)
Path: cpmsftngxa06.phx.gbl!TK2MSFTNGP08.phx.gbl!newsfeed 00.sul.t-online.de!t-onlin
e.de!news-spur1.maxwell.syr.edu!news.maxwell.syr.edu!postnew s1.google.com!no
t-for-mailXref: cpmsftngxa06.phx.gbl microsoft.public.dotnet.languages.vb:145738
X-Tomcat-NG: microsoft.public.dotnet.languages.vb

I am using vb.net 2003 professional and I get the following results
when using the round method:

dim Amount as decimal = 180.255
Amount = Amount.Round(Amount, 2)

Amount now contains 180.25. I need it to contain 180.26.

Any ideas?


Nov 20 '05 #4
Hi Spebola,

This behavior has been stated in the msdn.
Decimal.Round Method
When d is exactly halfway between two rounded values, the result is the
rounded value that has an even digit in the far right decimal position. For
example, when rounded to two decimals, the value 2.345 becomes 2.34 and the
value 2.355 becomes 2.36. This process is known as rounding toward even, or
rounding to nearest.
http://msdn.microsoft.com/library/de...us/cpref/html/
frlrfSystemMathClassAbsTopic.asp

The behavior also exist in VB6.
189847 INFO: New String and Format Functions in Visual Basic 6.0
http://support.microsoft.com/?id=189847

You may refer to link below for more details about business rule.
http://www.uop.edu/cop/psychology/St.../Rounding.html
According to Hurlburt, 1994 pg. 12,the procedure for finding the last digit
of a
measure is called "Rounding".
Rule 3- To prevent rounding bias, if the remainder is exactly 5, then round
the
last digit to the closest even number.Thus the number 3.55 (rounded to 1
digit)
would be 3.6 (rounding up) and the number 6.450 would round to 6.4
(rounding
down)if rounding to 1 decimal.
See page 12 in Hurlburt, R. (1994) Comprehending Behavioral Statistics,
Brooks/Cole, Pacific Grove, CA.

This response contains a reference to a third-party World Wide Web site.
Microsoft is providing this information as a convenience to you. Microsoft
does not control these sites and has not tested any software or information
found on these sites; therefore, Microsoft cannot make any representations
regarding the quality, safety, or suitability of any software or
information found there. There are inherent dangers in the use of any
software found on the Internet, and Microsoft cautions you to make sure
that you completely understand the risk before retrieving any software from
the Internet.
Regards,
Peter Huang
Microsoft Online Partner Support
Get Secure! www.microsoft.com/security
This posting is provided "as is" with no warranties and confers no rights.

--------------------
From: sp*****@swbell.net (spebola)
Newsgroups: microsoft.public.dotnet.languages.vb
Subject: vb.net 2003 rounding decimal value question
Date: 10 Oct 2003 09:32:51 -0700
Organization: http://groups.google.com
Lines: 9
Message-ID: <b8**************************@posting.google.com >
NNTP-Posting-Host: 65.68.122.33
Content-Type: text/plain; charset=ISO-8859-1
Content-Transfer-Encoding: 8bit
X-Trace: posting.google.com 1065803571 25204 127.0.0.1 (10 Oct 2003 16:32:51 GMT)X-Complaints-To: gr**********@google.com
NNTP-Posting-Date: Fri, 10 Oct 2003 16:32:51 +0000 (UTC)
Path: cpmsftngxa06.phx.gbl!TK2MSFTNGP08.phx.gbl!newsfeed 00.sul.t-online.de!t-onlin
e.de!news-spur1.maxwell.syr.edu!news.maxwell.syr.edu!postnew s1.google.com!no
t-for-mailXref: cpmsftngxa06.phx.gbl microsoft.public.dotnet.languages.vb:145738
X-Tomcat-NG: microsoft.public.dotnet.languages.vb

I am using vb.net 2003 professional and I get the following results
when using the round method:

dim Amount as decimal = 180.255
Amount = Amount.Round(Amount, 2)

Amount now contains 180.25. I need it to contain 180.26.

Any ideas?


Nov 20 '05 #5

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

0
better678
by: better678 | last post by:
Question: Discuss your understanding of the Java platform. Is the statement "Java is interpreted" correct? Answer: Java is an object-oriented...
0
by: teenabhardwaj | last post by:
How would one discover a valid source for learning news, comfort, and help for engineering designs? Covering through piles of books takes a lot of...
0
by: Naresh1 | last post by:
What is WebLogic Admin Training? WebLogic Admin Training is a specialized program designed to equip individuals with the skills and knowledge...
0
jalbright99669
by: jalbright99669 | last post by:
Am having a bit of a time with URL Rewrite. I need to incorporate http to https redirect with a reverse proxy. I have the URL Rewrite rules made...
0
by: antdb | last post by:
Ⅰ. Advantage of AntDB: hyper-convergence + streaming processing engine In the overall architecture, a new "hyper-convergence" concept was...
0
by: Matthew3360 | last post by:
Hi there. I have been struggling to find out how to use a variable as my location in my header redirect function. Here is my code. ...
0
by: Arjunsri | last post by:
I have a Redshift database that I need to use as an import data source. I have configured the DSN connection using the server, port, database, and...
0
by: Matthew3360 | last post by:
Hi, I have been trying to connect to a local host using php curl. But I am finding it hard to do this. I am doing the curl get request from my web...
0
Oralloy
by: Oralloy | last post by:
Hello Folks, I am trying to hook up a CPU which I designed using SystemC to I/O pins on an FPGA. My problem (spelled failure) is with the...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.