I need to make a monthly report of packages, amount of letters received and amount of product sent out. I just made a simple query that used to work, but now I always get a message that says: “This expression was typed incorrectly or it is too complex to be evaluated”. I have used this query for several months now and just now it gave me this problem. All I need is to know how many tracts, packages and letters per country. Can anyone help me? The SQL is below:
SELECT Count([dataInternational Totals_test].Country) AS CountOfCountry, Sum([dataInternational Totals_test].[tract Totals]) AS [SumOfTract Totals], Sum([dataInternational Totals_test].Packages) AS SumOfPackages, Sum([dataInternational Totals_test].Count) AS SumOfCount
FROM [dataInternational Totals_test]
ORDER BY Count([dataInternational Totals_test].Country);