Ok im using this SQL to count the number of orders that are created that are month old.
SELECT Count([tblEnquiryRegister].[enqRecieved]) AS [One Month Old]
FROM tblEnquiryRegister
WHERE (((tblEnquiryRegister.enqRecieved) Between DateAdd("m",0,Date()) And DateAdd("m",-1,Date())));
I would like the query to also count dates that are two months old and three months old.... but so far i have been unable to add the results to the same query.
Is ther a way to gather this sort of result or would i have to crerate multiple queries for each month?
Thanks alot for any help
Chris
SELECT Count([tblEnquiryRegister].[enqRecieved]) AS [One Month Old]
FROM tblEnquiryRegister
WHERE (((tblEnquiryRegister.enqRecieved) Between DateAdd("m",0,Date()) And DateAdd("m",-1,Date())));
I would like the query to also count dates that are two months old and three months old.... but so far i have been unable to add the results to the same query.
Is ther a way to gather this sort of result or would i have to crerate multiple queries for each month?
Thanks alot for any help
Chris