S
Secret Squirrel
I'm trying to count my records based on days late. I have 5 queries set up to
do this based on the days late. Here's is how they work:
TotalRecords Query
RecordsOnTime Query
2-3DaysLate Query
4-7DaysLate Query
8+DaysLate Query
They all count the records that fall into their criteria along with the
month & year that the fall into. How can I create 1 query to summarize all
these queries into 1 query?
Here is an example of one of my queries:
SELECT Count(qryPerformanceOnTime.RecordID) AS CountOfRecordID,
Format([RecDate],"mmmm") AS MonthCount, Format([RecDate],"yyyy") AS YearCount
FROM qryPerformanceOnTime
GROUP BY Format([RecDate],"mmmm"), Format([RecDate],"yyyy");
The above query is the one that counts the number of records that are on time.
The other queries are just like these but tied into other queries that
filter only the records that fall into their criteria.
I want to be able to count the records from each of these queries by month
and year and put them all into 1 query. Is this possible?
do this based on the days late. Here's is how they work:
TotalRecords Query
RecordsOnTime Query
2-3DaysLate Query
4-7DaysLate Query
8+DaysLate Query
They all count the records that fall into their criteria along with the
month & year that the fall into. How can I create 1 query to summarize all
these queries into 1 query?
Here is an example of one of my queries:
SELECT Count(qryPerformanceOnTime.RecordID) AS CountOfRecordID,
Format([RecDate],"mmmm") AS MonthCount, Format([RecDate],"yyyy") AS YearCount
FROM qryPerformanceOnTime
GROUP BY Format([RecDate],"mmmm"), Format([RecDate],"yyyy");
The above query is the one that counts the number of records that are on time.
The other queries are just like these but tied into other queries that
filter only the records that fall into their criteria.
I want to be able to count the records from each of these queries by month
and year and put them all into 1 query. Is this possible?