active questions tagged rounding - Stack Overflow most recent 30 from stackoverflow.com 2009-12-19T08:57:30Z http://stackoverflow.com/feeds/tag/rounding http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/374316/round-a-double-to-x-significant-figures-after-decimal-point 4 Round a double to x significant figures after decimal point Rocco 2008-12-17T11:52:09Z 2009-12-17T22:56:12Z <p>If I have a double (234.004223) etc. I would like to round this to x significant digits after the decimal places in C#</p> <p>So far I can only find ways to round to x decimal places but this simply removes the precision if there are any 0s in the number.</p> <p>e.g. 0.086 to 1 decimal place becomes 0.1 but I would like it to stay 0.08.</p> <p>Thanks</p> http://stackoverflow.com/questions/1921362/how-to-round-a-datetime-in-mysql 0 How to round a DateTime in MySQL? Jader Dias 2009-12-17T12:13:40Z 2009-12-17T12:50:25Z <p>I want to discretize the DateTime with the resolution of 5 minutes. I did it in C#, but how to convert the following code to MySQL?</p> <pre><code>DateTime Floor(DateTime dateTime, TimeSpan resolution) { return new DateTime ( timeSpan.Ticks * (long) Math.Floor ( ((double)dateTime.Ticks) / ((double)resolution.Ticks) ) ); } </code></pre> http://stackoverflow.com/questions/1920933/round-to-n-significant-figures-in-sql 2 Round to n Significant Figures in SQL Paul 2009-12-17T10:53:17Z 2009-12-17T11:16:35Z <p>I would like to be able to round a number to n significant figures in SQL. So:</p> <pre><code>123.456 rounded to 2sf would give 120 0.00123 rounded to 2sf would give 0.0012 </code></pre> <p>I am aware of the ROUND() function, which rounds to n decimal places rather than significant figures.</p> http://stackoverflow.com/questions/202302/rounding-to-an-arbitrary-number-of-significant-digits 4 rounding to an arbitrary number of significant digits DougN 2008-10-14T18:37:17Z 2009-12-16T03:59:04Z <p>How can you round <em>any</em> number (not just integers > 0) to N significant digits?</p> <p>For example, if I want to round to 3 significant digits, I'm looking for a formula that could take:</p> <p>1,239,451 and return 1,240,000</p> <p>12.1257 and return 12.1</p> <p>.0681 and return .0681</p> <p>5 and return 5</p> <p>Naturally the algorithm should not be hard-coded to only handle N of 3, although that would be a start.</p> http://stackoverflow.com/questions/1883385/rounding-to-use-for-int-float-int-round-trip-conversion 1 Rounding to use for int -> float -> int round trip conversion Trevor Robinson 2009-12-10T19:29:38Z 2009-12-11T09:39:29Z <p>I'm writing a set of numeric type conversion functions for a database engine, and I'm concerned about the behavior of converting large integral floating-point values to integer types with greater precision.</p> <p>Take for example converting a 32-bit int to a 32-bit single-precision float. The 23-bit significand of the float yields about 7 decimal digits of precision, so converting any int with more than about 7 digits will result in a loss of precision (which is fine and expected). However, when you convert such a float back to an int, you end up with artifacts of its binary representation in the low-order digits:</p> <pre><code>#include &lt;iostream&gt; #include &lt;iomanip&gt; using namespace std; int main() { int a = 2147483000; cout &lt;&lt; a &lt;&lt; endl; float f = (float)a; cout &lt;&lt; setprecision(10) &lt;&lt; f &lt;&lt; endl; int b = (int)f; cout &lt;&lt; b &lt;&lt; endl; return 0; } </code></pre> <p>This prints:</p> <pre><code>2147483000 2147483008 2147483008 </code></pre> <p>The trailing 008 is beyond the precision of the float, and therefore seems undesirable to retain in the int, since in a database application, users are primarily concerned with decimal representation, and trailing 0's are used to indicate insignificant digits.</p> <p>So my questions are: Are there any well-known existing systems that perform decimal significant digit rounding in float -> int (or double -> long long) conversions, and are there any well-known, efficient algorithms for doing so?</p> <p>(Note: I'm aware that some systems have decimal floating-point types, such as those defined by <a href="http://en.wikipedia.org/wiki/IEEE%5F754-2008" rel="nofollow">IEEE 754-2008</a>. However, they don't have mainstream hardware support and aren't built into C/C++. I might want to support them down the road, but I still need to handle binary floats intuitively.)</p> http://stackoverflow.com/questions/1829700/creating-a-custom-attribute-to-control-rounding-behavior 0 creating a custom attribute to control rounding behavior Jason 2009-12-01T23:34:16Z 2009-12-02T00:12:43Z <p>I have a class with a lot of Decimal properties that are used for financial calculations. There are rules that specify how many decimal places to use when rounding each number. There is no global rule - some are two decimal places, some 0, some 8, etc.</p> <p>I'm trying to figure out the easiest way to approach this. I want to avoid having rounding logic spread all over the place in my code. I know I can write a custom setter for each property that rounds the value when I assign it.</p> <p>This seems like something I could do with a custom attribute. However, I haven't written a custom attribute before, and I can't find a good example that does something similar to what I want, so I might be barking up the wrong tree.</p> <p>Is this possible? If so, what's a good example of how to approach this?</p> <p>If not, are there any other methods I should consider other than the custom setter?</p> http://stackoverflow.com/questions/1819250/odd-rounding-problem-using-the-ruby-printf-format-specifier 1 Odd rounding problem using the ruby printf-format-specifier tsdbrown 2009-11-30T11:23:25Z 2009-12-01T23:20:12Z <p>Has anybody got any ideas on this one? </p> <p>When we run:</p> <p><code>printf("%.0f", 40.5)</code> </p> <p>On a windows box the return is "41" but on our production ubuntu server we're getting "40"</p> http://stackoverflow.com/questions/1823529/accurate-single-pass-penny-computation 0 accurate single pass penny computation unknown (yahoo) 2009-12-01T01:44:38Z 2009-12-01T02:39:44Z <p>We have a cost C which must be assigned to departments 1..n. Another computation produces the share for each department, it is a number from 0 to 1, with more than 5 decimal places. The sum of all department shares is exactly 1, but they are not necessarily equal.</p> <p>The goal is to compute the exact dollars and cents to bill to each department. The sum of the bill must EXACTLY match the cost C, it cannot be a few pennies under or over. Furthermore, each department's share must be not require fractional pennies. Additionally, although it is not fair to just dump the remainder onto the last department, it is not necessary to look back to previous timeframes. Note that simply rounding each department's share to the penny almost always results in an over/under of a few pennies. </p> <p>Grossly oversimplified example: C = 33.34 , 4 departments each with exactly 0.2500 share. Because 33.34 * 0.25 = 8.335 so you can see that two departments must pay 8.33 and two must pay 8.34. One correct assignment would be: d1=8.33, d2=8.34, d3=8.33, d4=8.34. If you round, every department pays 8.34 which results in an overage of $0.02. If you multiply this by many more departments and many more costs, you end up with hundred dollar discrepancies.</p> <p>I want to do this in 1 pass, that is, I don't want to loop through, find out I am off by 0.02, then loop again and tweak values until it is correct. I want to do this in 1 pass. I would also like to know if this algorithm has a name.</p> http://stackoverflow.com/questions/1763656/adding-text-to-this-line -1 Adding text to this line Mark Hollas 2009-11-19T14:27:25Z 2009-11-19T16:26:40Z <p>I'm a novice so please excuse the simplicity of this. I am trying to get a total ammount, trim the excess decimal places than append some text.. it all works until I try ROUND it</p> <p>ROUND(CAST(ServiceFee * COUNT(UserID) AS VARCHAR(20)),0) + CAST(' yen' as VARCHAR(20))</p> <p>Thanks in advance</p> http://stackoverflow.com/questions/1750739/faster-implementation-of-math-round 2 Faster implementation of Math.round? mrjbq7 2009-11-17T18:13:48Z 2009-11-17T18:32:56Z <p>Are there any drawbacks to this code, which appears to be a faster (and correct) version of <code>java.lang.Math.round</code>?</p> <pre><code>public static long round(double d) { if (d &gt; 0) { return (long) (d + 0.5d); } else { return (long) (d - 0.5d); } } </code></pre> <p>It takes advantage of the fact that, in Java, truncating to long rounds in to zero.</p> http://stackoverflow.com/questions/1750139/precision-nightmare-in-java-and-mssql 2 Precision nightmare in Java and MSSQL Daniil 2009-11-17T16:39:35Z 2009-11-17T18:24:26Z <p>Hi everyone,</p> <p>I've been struggling with precision nightmare in Java and MSSQL up to the point when I don't know anymore. Personally, I understand the issue and the underlying reason for it, but explaining that to the client half way across the globe is something unfeasible (at least for me).</p> <p>The situation is this. I have two columns in MSSQL - Qty INT and Price FLOAT. The values for these are - 1250 and 10.8601 - so in order to get the total value its Qty * Price and result is 13575.124999999998 (in both Java and MSSQL). That's correct. The issue is this - the client doesn't want to see that, they see that number only as 13575.125 and that's it. On one place they way to see it in 2 decimal precision and another in 4 decimals. When displaying in 4 decimals the number is correct - 13575.125, but when displaying in 2 decimals they believe it is wrong - 13575.12 - should instead be 13575.13!</p> <p>Help.</p> http://stackoverflow.com/questions/1734282/how-to-properly-display-a-price-up-to-two-decimals-cents-including-trailing-zer 0 How to properly display a price up to two decimals (cents) including trailing zeros in Java? denchr 2009-11-14T13:51:43Z 2009-11-14T19:51:38Z <p>There is a good question on rounding decimals in Java <a href="http://stackoverflow.com/questions/153724/how-to-round-a-number-to-n-decimal-places-in-java">here</a>. But I was wondering how can I include the trailing zeros to display prices in my program like: $1.50, $1.00</p> <p>The simple solution of</p> <pre><code>String.format("%.2g%n", 0.912385); </code></pre> <p>works just fine, but omits the trailing zero if it is at the last decimal place. The issue comes up in my program even though I only use expressions like this:</p> <pre><code>double price = 1.50; </code></pre> <p>When I do calculations with different prices (add, multiply, etc.) the result is primarily displayed like this:</p> <pre><code>$2.5000000000000003 </code></pre> <p>So, using the String.format works fine for this purpose, but it truncates the above example to</p> <pre><code>$2.5 </code></pre> <p>Is there a proper way to show the trailing zero at the second decimal place? Or both zeros if the output of a calculation should be </p> <pre><code>$2.00 </code></pre> http://stackoverflow.com/questions/485525/round-for-float-in-c 7 round() for float in C++ Roddy 2009-01-27T22:06:30Z 2009-11-10T10:18:13Z <p>I need a simple floating point rounding function, thus: </p> <pre><code>double round(double); round(0.1) = 0 round(-0.1) = 0 round(-0.9) = -1 </code></pre> <p>I can find ceil() and floor() in the math.h - but not round().</p> <p>Is it present in the standard C++ library under another name, or is it missing??</p> http://stackoverflow.com/questions/1452579/round-a-number-to-two-decimal-places -1 round a number to two decimal places Mark m 2009-09-21T02:12:13Z 2009-11-06T23:13:56Z <p>How do I write a program that takes a positive number with a fractional part and rounds it to two decimal places?</p> http://stackoverflow.com/questions/1673672/how-to-round-with-no-trailing-zeros-in-sql-server-2005 1 How to round with no trailing zeros in SQL Server 2005? Alex 2009-11-04T13:13:47Z 2009-11-04T13:22:47Z <p>How to round with no trailing zeros in SQL Server 2005?</p> <pre><code> select round(100.5555, 2) </code></pre> <p>...yields 100.55**00**. How to get rid of the zeros?</p> http://stackoverflow.com/questions/977796/in-c-math-round2-5-result-is-2-instead-of-3-are-you-kidding-me 16 In C#: Math.Round(2.5) result is 2 (instead of 3)! Are you kidding me? jeffu 2009-06-10T19:51:05Z 2009-10-31T19:35:53Z <p>In C#, the result of <code>Math.Round(2.5)</code> is 2.</p> <p>It is supposed to be 3, isn't it? Is this a C# bug or something?</p> <p>Thanks!</p> http://stackoverflow.com/questions/236439/is-it-correct-to-compare-two-rounded-floating-point-numbers-using-the-operator 6 Is it correct to compare two rounded floating point numbers using the == operator? Trap 2008-10-25T13:54:35Z 2009-10-28T12:32:15Z <p>Or is there a chance that the operation will fail?</p> <p>Thanks.</p> <p>I chose the wrong term and what I really meant was rounding to 0, not truncation.</p> <p>The point is, I need to compare the integer part of two doubles and I'm just casting them to int and then using ==, but, as someone pointed out in one of my earlier questions, this could throw an overflow exception if the double can't fit into the integer.</p> <p>So the question would be 'Is it correct to use the == operator to compare two doubles that have previously been rounded to 0, or should I stick to the casting to int method and catch a possible exception?</p> http://stackoverflow.com/questions/179427/how-to-resolve-a-java-rounding-double-issue 4 How to resolve a Java Rounding Double issue patrick.boisclair 2008-10-07T16:59:41Z 2009-10-27T07:45:24Z <p>Seems like the subtraction is triggering some kind of issue and the resulting value is wrong.</p> <pre><code>double tempCommission = targetPremium.doubleValue()*rate.doubleValue()/100d; </code></pre> <p>78.75 = 787.5 * 10.0/100d</p> <pre><code>double netToCompany = targetPremium.doubleValue() - tempCommission; </code></pre> <p>708.75 = 787.5 - 78.75</p> <pre><code>double dCommission = request.getPremium().doubleValue() - netToCompany; </code></pre> <p>877.8499999999999 = 1586.6 - 708.75</p> <p>The resulting expected value would be 877.85.</p> <p>What should be done to ensure the correct calculation?</p> http://stackoverflow.com/questions/1616885/rounding-error-in-c-different-results-on-different-pcs 0 Rounding Error in C#: Different results on different PCs David Block 2009-10-24T03:46:55Z 2009-10-24T06:58:38Z <p>I have a function in C# that returns the following:</p> <pre><code>... float amount = smallestPercentage * (float)quantity; return (int)amount; </code></pre> <p>Now I know I am suppose to use Convert.Int32(amount) rather than type cast an int, and that has fixed the problem. But my problem was really this...</p> <p>When developing my program at home (Windows Vista) I would get a return value of 1, but when a deployed the program to another environment (Windows XP), I would get a return value of 0.</p> <p>I was wondering if this has to do with the Windows version, the .NET version or even the CPU processor?</p> <p>Thanks.</p> <p>David</p> http://stackoverflow.com/questions/1604696/php-float-calculation-2-decimal-point 0 php float calculation 2 decimal point Shiro 2009-10-22T02:14:46Z 2009-10-23T03:47:00Z <p>Hi everyone, Got another math calculation problem again.</p> <p>$a = 34.56</p> <p>$b = 34.55</p> <p>$a do some calculation to get this figure</p> <p>$b is doing rounding nearest 0.05 to get this figure</p> <p>what happen is</p> <p>$c = $b - $a</p> <p>supposedly I should be -0.01, but I echo out the $c is show -0.00988888888888</p> <p>I try to use number_format($c, 2), but the output is 0.00,</p> <p>how can I make sure $a and $b is exactly 2 decimals, no hidden number at the back.</p> <p>in my php knowledge number_format only able to format the display, but the value not really 2 decimal,</p> <p>I hope I can get help from here. This really frustrated me.</p> http://stackoverflow.com/questions/1603694/sql-rounding-and-truncation-needs-a-thorough-explanation 0 SQL rounding and truncation, needs a thorough explanation Kimberly 2009-10-21T21:14:11Z 2009-10-21T21:20:00Z <p>Hello. I'm a novice when it comes to SQL and PHP, and I'm trying to round an average price result and take off the extra zeroes that currently appear. </p> <p>Currently my result turns up as: $3.005000</p> <p>My code currently reads as follows:</p> <pre><code>$result = mysql_query("SELECT AVG(price) FROM milk WHERE price &gt; 0 "); $row = mysql_fetch_row ($result); </code></pre> <p>I have found several examples of SQL rounding and truncation but unfortunately the tutorials I've seen provide me with no useful information on where or how I am supposed to implement these changes. </p> <p>This leaves me making guesses on where to make changes -- none of which have worked out so far (obviously).</p> <p>If someone could provide me with an example of how to round and truncate my results, which includes where exactly I need to make these changes in my current configuration, that would be most helpful and I would be very thankful! I'm really sorry if my n00bishness makes it more difficult to explain the solution.</p> <p>Thanks!</p> http://stackoverflow.com/questions/1570340/ms-access-rounding-precision-with-group-by 7 MS Access Rounding Precision With Group By boon 2009-10-15T04:54:04Z 2009-10-15T05:18:54Z <p>Why doesn't the average of the score of an employee of each month, when summed, equal the average of the employees score (ever)?</p> <p><strong>Average</strong></p> <pre><code>SELECT Avg(r.score) AS rawScore FROM (ET INNER JOIN Employee AS e ON ET.employeeId = e.id) INNER JOIN (Employee AS a INNER JOIN Review AS r ON a.id = r.employeeId) ON ET.id = r.ETId WHERE (((e.id)=@employeeId)) </code></pre> <p><strong>Returns</strong> 80.737 </p> <p><hr /></p> <p><strong>Average By Month</strong></p> <pre><code>SELECT Avg(r.score) AS rawScore, Format(submitDate, 'mmm yy') AS MonthText, month(r.submitDate) as mm, year(submitDate) as yy FROM (ET INNER JOIN Employee AS e ON ET.employeeId = e.id) INNER JOIN (Employee AS a INNER JOIN Review AS r ON a.id = r.employeeId) ON ET.id = r.ETId WHERE (((e.id)=@employeeId)) GROUP BY month(r.submitDate), year(submitDate), Format(submitDate, 'mmm yy') ORDER BY year(submitDate) DESC, month(r.submitDate) DESC </code></pre> <p><strong>Returns</strong></p> <pre><code>Average Score : Month 81.000 : Oct 09 80.375 : Sep 09 82.700 : Aug 09 83.100 : Jul 09 75.625 : Jun 09 </code></pre> <p>I know 80.737 is correct because I have tallied up the records by hand and done the average. But the average of this table (at 3 decimal places), is 80.56 which is too far off. Does group by mess with the rounding at each step?</p> http://stackoverflow.com/questions/1555251/rounding-to-the-nearest-ending-digits 2 Rounding to the Nearest Ending Digits Alix Axel 2009-10-12T15:32:58Z 2009-10-12T21:21:15Z <p>I have the following function that <strong>rounds a number to the nearest number ending with the digits of $nearest</strong>, and I was wondering if there is <strong>a more elegant way</strong> of doing the same.</p> <pre><code>/** * Rounds the number to the nearest digit(s). * * @param int $number * @param int $nearest * @return int */ function roundNearest($number, $nearest, $type = null) { $result = abs(intval($number)); $nearest = abs(intval($nearest)); if ($result &lt;= $nearest) { $result = $nearest; } else { $ceil = $nearest - substr($result, strlen($result) - strlen($nearest)); $floor = $nearest - substr($result, strlen($result) - strlen($nearest)) - pow(10, strlen($nearest)); switch ($type) { case 'ceil': $result += $ceil; break; case 'floor': $result += $floor; break; default: $result += (abs($ceil) &lt;= abs($floor)) ? $ceil : $floor; break; } } if ($number &lt; 0) { $result *= -1; } return $result; } </code></pre> <p>Some examples:</p> <pre><code>roundNearest(86, 9); // 89 roundNearest(97, 9); // 99 roundNearest(97, 9, 'floor'); // 89 </code></pre> <p>Thanks in advance!</p> <p><strong>PS: This question is <em>not</em> about rounding to the <em>nearest multiple</em>.</strong></p> http://stackoverflow.com/questions/1527588/sin-cos-tan-and-rounding-error 3 sin, cos, tan and rounding error Josh Kelley 2009-10-06T19:28:16Z 2009-10-07T14:22:20Z <p>I'm doing some trigonometry calculations in C/C++ and am running into problems with rounding errors. For example, on my Linux system:</p> <pre><code>#include &lt;stdio.h&gt; #include &lt;math.h&gt; int main(int argc, char *argv[]) { printf("%e\n", sin(M_PI)); return 0; } </code></pre> <p>This program gives the following output:</p> <pre><code>1.224647e-16 </code></pre> <p>when the correct answer is of course 0.</p> <p>How much rounding error can I expect when using trig functions? How can I best handle that error? I'm familiar with the Units in Last Place technique for comparing floating point numbers, from Bruce Dawson's <a href="http://www.cygnus-software.com/papers/comparingfloats/comparingfloats.htm" rel="nofollow">Comparing Floating Point Numbers</a>, but that doesn't seem to work here, since 0 and 1.22e-16 are quite a few ULPs apart.</p> http://stackoverflow.com/questions/1531695/round-to-nearest-five-c 3 Round to nearest five C# Martin 2009-10-07T13:38:10Z 2009-10-07T13:50:14Z <p>Hi!</p> <p>I'm using C# and I need to round a double to nearest five. I can't find a way to do it with the Math.Round function. How can I do this?</p> <p>What I want:</p> <pre><code>70 = 70 73.5 = 75 72 = 70 75.9 = 75 69 = 70 </code></pre> <p>and so on..</p> <p>Is there an easy way to do this?</p> http://stackoverflow.com/questions/1520990/c-math-round 1 C# - Math.Round Villager 2009-10-05T16:13:33Z 2009-10-05T16:47:54Z <p>Hello,</p> <p>I am trying to understand how to round to the nearest tenths position with C#. For instance, I have a value that is of type double. This double is currently set to 10.75. However, I need to round and then truncate everything past the tenths position. In this case, I am seeking a value of 10.8. How do I round to the tenths position in C#?</p> <p>Thank you!</p> http://stackoverflow.com/questions/1511993/sprintf-in-ruby 0 Sprintf in Ruby gmile 2009-10-02T21:59:41Z 2009-10-04T08:21:07Z <p>Sort of a quick question. I'm writing:</p> <pre><code>puts "%.3f %.4f %.5f" % [3.998877, 3.998877, 3.998877] </code></pre> <p>and get the following output:</p> <pre><code>3.999 3.9989 3.99888 </code></pre> <p><strong>sprintf</strong> simply rounds the numbers. How do I restrict that rounding?</p> http://stackoverflow.com/questions/1500546/is-it-possible-to-round-a-double-using-just-a-printf-statement 1 Is it possible to round a double using just a printf statement? Chandler 2009-09-30T20:43:29Z 2009-09-30T22:03:19Z <p>Obviously this is just a fraction of the code.</p> <pre><code>printf("Please enter a positive number that has a fractional part with three or more decimal places\n"); scanf("%5.2d", &amp;x); printf("The number you have entered is %5.2d\n" ,x); </code></pre> <p>Would this automatically round the number I type in? Or is there another way to do this?</p> <p>Edit:</p> <pre><code>printf("Please enter a positive number that has a fractional part with three or more decimal places\n"); scanf("%lf", &amp;x); x = x + 0.05; printf( "The number you have entered is %5.2lf\n", x); </code></pre> <p>Iv done this, but Im taking into consideration what someone had said about printf just "changing" the way it reads out. So this is obviously not the right way. Should I implement maybe the pow() function? Will that work with this somehow? </p> <p>Edit2: </p> <pre><code>printf("Please enter a positive number that has a fractional part with three or more decimal places\n"); scanf("%lf", &amp;x); x = x + 0.05; printf( "The number you have entered is %5.2lf\n", x); </code></pre> <p>Okay, iv gotten to the point where if i imput a number it will round to a whole number. 35.21 will round to 35, and 35.51 will round to 36 et. etc.</p> <p>How would I get 35.2178 to round to 35.22, and 35.2135 to round to 35.21. How would I get the certain powers of the decimal to round instead of the whole number?</p> http://stackoverflow.com/questions/1478895/is-this-sql-code-susceptible-to-rounding-errors 1 Is this SQL code susceptible to rounding errors? Chris McCall 2009-09-25T18:30:01Z 2009-09-25T19:29:01Z <p>I have discovered some strange behavior where a stored procedure is returning inaccurate results by a penny or two.</p> <p>Here's the code (I didn't write it):</p> <pre><code>ALTER PROCEDURE [dbo].[TN_GetSimpleBalance] @custID int, @nBalance decimal (8,2) output AS declare @ArBalance as decimal (8,2) declare @custStatusCode varchar (2) declare @unbilledCallsAmount as decimal (8,2) set @nBalance = 0 set @ArBalance = 0 set @custstatusCode = '' set @unbilledCallsAmount = 0 SET NOCOUNT ON select @unbilledCallsAmount = isnull(sum(callcharge+taxamount),0) from call with (NOLOCK) where custid = @custID and callstatuscode in ('R', 'B') --get AR balance select @ArBalance = isnull(sum(amount),0) from artran with (NOLOCK) where custid = @custID AND POSTEDFLAG ='Y' set @nBalance = @unbilledCallsAmount + @ArBalance </code></pre> <p><code>@nBalance</code> is showing zero, even though another app is telling me the customer has $.02. <code>callcharge</code> and <code>taxamount</code> are both money datatypes.</p> <p>This is the first time I've encountered this condition, but I am moving some related code to production and have been "asked" to research this.</p> <p>What's your take? Is there weirdness going between money and decimal datatypes? Anything else you think might explain this?</p> http://stackoverflow.com/questions/1451149/rounding-a-double-to-5-decimal-places 3 Rounding a double to 5 decimal places Kevin Boyd 2009-09-20T14:31:45Z 2009-09-23T06:18:01Z <p>How do I round a double to 5 decimal places, without using DecimalFormat?</p>