Hi Reen,
Steve's comment regarding removing the SUM in the formula is right on. That will likely solve the question of getting the same total for all formulas. Also, using the parameters for selecting dates is great and flexible if you want the report to be based on a single date range of sales. But it could be cumbersome if you want multiple columns in the report, each based on a different range.
---
I should mention that if you are using Adagio SalesAnalysis, you will want to pick a different report table. You have one named SR65A, which is based on the old DOS-based Sales Analysis. You should be using the SRW68 table, which has all the information stored in Adagio Sales Analysis (and not necesarily in the old DOS version of the program)
---
When it is desired to have multiple columns represent different date ranges, I like to create a formula that calculates the number of days difference between today and the transaction date:
Formula 'Date diff': CurrentDate - {SRW68 Transactions.Date}
This gives an integer result that is the number of days old for the invoice. Future dated invoices will have a negative number.
Then it is easier to determine the date ranges needed:
10Week:
IF {@Days diff} IN 0 TO 69
THEN {SRW68 Transactions.Quantity sold}
ELSE 0
1Week:
IF {@Days diff} IN 0 TO 6
THEN {SRW68 Transactions.Quantity sold}
ELSE 0
LY3Weeks:
IF {@Days diff} IN 344 TO 365
THEN {SRW68 Transactions.Quantity sold}
ELSE 0
And so on, whatever numbers are required. There also are pre-defined Date Ranges available in the formula editor for comonly used ranges:
IF {@Days diff} IN YearToDate
THEN {SRW68 Transactions.Quantity sold}
ELSE 0
_________________________
Regards,
Softrak Tech Support