I am trying to do the following but the counts i am getting are bizzare???
SELECT [Error Log].[Welcome Pack Status], [Staff List].Region, Count([Staff List].Region) AS CountOfRegion
FROM [Staff List], [Error Log]
GROUP BY [Error Log].[Welcome Pack Status], [Staff List].Region;
I only have the two tables, i am trying to do the count using fields from both of them i think this has something to do with it???
SELECT [Error Log].[Welcome Pack Status], [Staff List].Region, Count([Staff List].Region) AS CountOfRegion
FROM [Staff List], [Error Log]
GROUP BY [Error Log].[Welcome Pack Status], [Staff List].Region;
I only have the two tables, i am trying to do the count using fields from both of them i think this has something to do with it???