chevyimpala
Programmer
Okay how do I explain this. First I have a report called currency. This report is a select query that takes the data from the table and displays it by currency type, account. At the bottom of each currency type, and account there is a subtotal row that sums up the numbers and gives me a dollar figure.
My second report is called performance. It is a group by query that takes the numbers in the table and displays them by currency type. and in the currency footer it gives me a total of all accounts no matter what account type.
Here is where my problem inlies. In the currency report for account (sys1)(eur) I get subtotal 12,950.36 / account (discr) (eur) I get subtotal 25,654.23. which adds up to 38,604.59. Now in the performance report I get a number of 15,966.80.
Now why is it that one report gives me the right number but the other using the same table data gives me something totally different. Is it because of the group by funtion and how can i get it to give me the right number.
My second report is called performance. It is a group by query that takes the numbers in the table and displays them by currency type. and in the currency footer it gives me a total of all accounts no matter what account type.
Here is where my problem inlies. In the currency report for account (sys1)(eur) I get subtotal 12,950.36 / account (discr) (eur) I get subtotal 25,654.23. which adds up to 38,604.59. Now in the performance report I get a number of 15,966.80.
Now why is it that one report gives me the right number but the other using the same table data gives me something totally different. Is it because of the group by funtion and how can i get it to give me the right number.