I have a table that has 2 columns: Location and job title in MS Access
I want to create a query that can find the sum of job titles in each location.
For example:
Location Job Title
----------------------------------------------
Alabama Engineer
Orlando Teacher
Alabama Teacher
Los Angeles Engineer
The query result to be:
Location Alabama Orlando Los Angeles
Job Title
-----------------------------------------------------------------------------
Engineer 1 0 1
Teacher 1 1 0
Thanks and appreciated