Hi,
There is only 1 table which hold the DB
Here is the code:
Code:
SELECT tblServiceRequest.Location, Month([Actual Open Date]) AS Grouping, tblServiceRequest.Type, tblServiceRequest.Status, tblServiceRequest.[Final Plan Of Action], Count(tblServiceRequest.[Final Resolution]) AS [CountOfFinal Resolution]
FROM tblServiceRequest
GROUP BY tblServiceRequest.Location, Month([Actual Open Date]), tblServiceRequest.Type, tblServiceRequest.Status, tblServiceRequest.[Final Plan Of Action], Month([Actual Open Date])
HAVING (((tblServiceRequest.Location)=[Select Location 1 or 2]) AND ((Month([Actual Open Date]))=[select month]) AND ((tblServiceRequest.Type)="Problem") AND ((tblServiceRequest.Status)="Closed") AND ((Month([Actual Open Date]))>6));
TNX!