Hello,
I have a query that is returning incorrect values with trying to sum an amount column. Basically I have values both positive and negative in the fields. When I execute the query to sum the values it returns the wrong value.
For instance:
Amount 12398.60
Amount -258.80
Amount -12139.80
These values should sum to zero; however Access returns the value as 1.81898940354586E-12
Any ideas what is going wrong?
My sql query is
Select sum(amount)
from mytable;
Any help is appreciated
I have a query that is returning incorrect values with trying to sum an amount column. Basically I have values both positive and negative in the fields. When I execute the query to sum the values it returns the wrong value.
For instance:
Amount 12398.60
Amount -258.80
Amount -12139.80
These values should sum to zero; however Access returns the value as 1.81898940354586E-12
Any ideas what is going wrong?
My sql query is
Select sum(amount)
from mytable;
Any help is appreciated