I have the following Ethnicity query which generates all my count totals for each entry:
SELECT ETHN.Description AS Ethnicity, Count([Project Data].ETHN) AS Total
FROM ETHN LEFT JOIN [Project Data] ON ETHN.Value = [Project Data].ETHN
GROUP BY ETHN.Description;
I want to be able to get the query to also show how many Male & Females there are alongside each ethnicity total?
My gender field is called [GEND], an help will be much appreciated.
Cheers
SELECT ETHN.Description AS Ethnicity, Count([Project Data].ETHN) AS Total
FROM ETHN LEFT JOIN [Project Data] ON ETHN.Value = [Project Data].ETHN
GROUP BY ETHN.Description;
I want to be able to get the query to also show how many Male & Females there are alongside each ethnicity total?
My gender field is called [GEND], an help will be much appreciated.
Cheers