This is really something, has never happened to me in Access 2003. Now among some other things in 2007 this really bothers me:
There is a table with number which have 2 digits after decimal point.
Query calculates the sum of the sum of this column. Somehow I am getting more digits.
Table input:
Table properties:
Query:
Results of a query
Why it is not 15,15 as a result?
Please advise.
There is a table with number which have 2 digits after decimal point.
Query calculates the sum of the sum of this column. Somehow I am getting more digits.

Table input:

Table properties:

Query:
Code:
SELECT Sum(Appended.sum) AS sssum FROM Appended;

Why it is not 15,15 as a result?
Please advise.