I have only the one table named "Error log" and the query i am trying to run is a having two count fields. I am using two fields from the table 'Member Of Staff' and 'Welcome Pack Status'. I would like to do the following, but where i have stated error count i want the other count to use 'complete' in the crieria field.
SELECT [Error Log].[Member Of Staff], [Error Log].[Welcome Pack Status], Count([Error Log].[Welcome Pack Status]) AS Errors
FROM [Error Log]
GROUP BY [Error Log].[Member Of Staff], [Error Log].[Welcome Pack Status]
HAVING ((([Error Log].[Welcome Pack Status])="error"));
SELECT [Error Log].[Member Of Staff], [Error Log].[Welcome Pack Status], Count([Error Log].[Welcome Pack Status]) AS Errors
FROM [Error Log]
GROUP BY [Error Log].[Member Of Staff], [Error Log].[Welcome Pack Status]
HAVING ((([Error Log].[Welcome Pack Status])="error"));