M
Mabena
Guest
First time user, inexperienced access user
I have a table with some of the following fields: date, machine id (as Op Responsible), crank number.
I want to be able to count reject per machine per day. The count will be for crank numbers which is text format.
i tried a query that gave me error that I did not incluse date as part of aggregate function in the transform statement. I hav no clue how to use aggragate or transform statements. Here is that query:
SELECT [T DEFECT DATA].Date, [T DEFECT DATA].[Op Responsible], Count([Crank Number]) AS Total
FROM [T DEFECT DATA]
ORDER BY [T DEFECT DATA].Date;
I have a table with some of the following fields: date, machine id (as Op Responsible), crank number.
I want to be able to count reject per machine per day. The count will be for crank numbers which is text format.
i tried a query that gave me error that I did not incluse date as part of aggregate function in the transform statement. I hav no clue how to use aggragate or transform statements. Here is that query:
SELECT [T DEFECT DATA].Date, [T DEFECT DATA].[Op Responsible], Count([Crank Number]) AS Total
FROM [T DEFECT DATA]
ORDER BY [T DEFECT DATA].Date;