I run a query and all my numbers are coming out to 5 decimal points:
for example -
156713.55000
2103613.03000
2080.08000
is there a simple piece of code I can add into my code so the 'Cost' table results are to 2 decimal points?
|
I run a query and all my numbers are coming out to 5 decimal points: for example -
is there a simple piece of code I can add into my code so the 'Cost' table results are to 2 decimal points? |
||||
|
Following example will help you. With rounding:
Without rounding:
or Use
displays: ' 12345.679' ( 3 spaces, 5 digits 12345, a decimal point, and three decimal digits (679). - it rounds if it has to truncate for a Total of 12 characters, with 3 to the right of decimal point. |
|||
|
|
|
Just use the
Or to strip the decimals and round, use
|
||||
|
|
Costtable, and what datatype it is. – Bridge May 17 '12 at 12:01