Hello.
This might be a no brainer, but I am stumped.
My goal is to have one query that counts and sums the amount fields of other, unlrelated queries. This query will be used a summary.
I tried the normal Count and Sum route and I tried to build expressions, but no can do. It counts and sums the entire table that the queries are tied to.
Any thoughts?
Here is my SQL with two of the queries.
SELECT Count([qry_Exceptions - By Queue Manual Adds (Detail).Amount]) AS Expr2, Sum([qry_Exceptions - By Queue Manual Adds (Detail).Amount]) AS Expr1, Count([qry_Exceptions - By Queue PAID WO NSF or SS (Detail).Amount]) AS Expr3, Sum([qry_Exceptions - By Queue PAID WO NSF or SS (Detail).Amount]) AS Expr4
FROM [qry_Exceptions - By Queue Manual Adds (Detail)], [qry_Exceptions - By Queue PAID WO NSF or SS (Detail)];
This might be a no brainer, but I am stumped.
My goal is to have one query that counts and sums the amount fields of other, unlrelated queries. This query will be used a summary.
I tried the normal Count and Sum route and I tried to build expressions, but no can do. It counts and sums the entire table that the queries are tied to.
Any thoughts?
Here is my SQL with two of the queries.
SELECT Count([qry_Exceptions - By Queue Manual Adds (Detail).Amount]) AS Expr2, Sum([qry_Exceptions - By Queue Manual Adds (Detail).Amount]) AS Expr1, Count([qry_Exceptions - By Queue PAID WO NSF or SS (Detail).Amount]) AS Expr3, Sum([qry_Exceptions - By Queue PAID WO NSF or SS (Detail).Amount]) AS Expr4
FROM [qry_Exceptions - By Queue Manual Adds (Detail)], [qry_Exceptions - By Queue PAID WO NSF or SS (Detail)];