Hi, I’m trying to combine data from 2 tables. One has a date field used for month & year, the other for full date.
The problem I’m having is that I want to group by month year & the table with the full date is pretty much stopping me.
This is the query (in it’s latest incarnation);
SELECT ServiceImprovementRequest.DateRecorded, ServiceImprovementRequest.Counted, Count(ServiceImprovementRequest.AutoID) AS CountOfAutoID
FROM ServiceImprovementRequest
GROUP BY ServiceImprovementRequest.DateRecorded, ServiceImprovementRequest.Counted
HAVING (((ServiceImprovementRequest.Counted)=True));
Attached are the 2 tables