Hi everyone,
I have two tables linked in a one to many relationship through ID field.
The first table has fields ID and Type
The second table has fields ID, Region, and Percent
One ID in the first table can have many Regions in the second table.
I would like to produce a table that returns the total number of IDs per region where Percent >= 90 AND the total number of IDs per region where Percent is >=90 AND where Type is "Reference".
The final table would be have fields: Region, Total#ID, and #ReferenceID
Is it possible to do this in ONE query?