L
Love Buzz
Hello all.
John has been helping on another issue related to this one. Here is the deal:
1.) When I start a new query and bring in one table everything works fine.
I am adding the number of items processed for a period of time by User ID.
2.) When I introduce another table that contains data about errors by User
ID, the total items processed for those Users with errors is greatly
exaggerated (while those without errors is correct).
3.) I have not connected the tables or used any fields from the second table
in my query.
What would be causing this? Thanks for your help. Here's my SQL for the
query:
SELECT [December 4].UserID, Sum([December 4].Items) AS SumOfItems
FROM [December 4], Errors
WHERE ((([December 4].Date) Between [Start Date] And [End Date]))
GROUP BY [December 4].UserID;
John has been helping on another issue related to this one. Here is the deal:
1.) When I start a new query and bring in one table everything works fine.
I am adding the number of items processed for a period of time by User ID.
2.) When I introduce another table that contains data about errors by User
ID, the total items processed for those Users with errors is greatly
exaggerated (while those without errors is correct).
3.) I have not connected the tables or used any fields from the second table
in my query.
What would be causing this? Thanks for your help. Here's my SQL for the
query:
SELECT [December 4].UserID, Sum([December 4].Items) AS SumOfItems
FROM [December 4], Errors
WHERE ((([December 4].Date) Between [Start Date] And [End Date]))
GROUP BY [December 4].UserID;