I'm posting it here in case no one catches it at the end of the other thread.
I'm so close now . . . the query below produces the correct results, only for the entire table!
I need to know how to allow the user to enter a date, ie. [Enter yyyy-mm] and have it placed in the three date fields before the query is run. This would clinch it.
The date fields are formatteds thus; yyyy-mm-dd 00:00:00
Any suggestions . . . ? THANKS MUCH . . .Rick
CODE
SELECT OCDownloadRES.CITY,
Count(OCDownloadRES.LISTDATE) AS CountOfLISTDATE,
Count(OCDownloadRES.PENDINGDATE) AS CountOfPENDINGDATE,
Count(OCDownloadRES.CLOSEDDATE) AS CountOfCLOSEDDATE
FROM OCDownloadRES
GROUP BY OCDownloadRES.CITY, OCDownloadRES.PROPSUBTYPE
HAVING (((OCDownloadRES.PROPSUBTYPE)=[ENTER PROP TYPE]));
I'm so close now . . . the query below produces the correct results, only for the entire table!
I need to know how to allow the user to enter a date, ie. [Enter yyyy-mm] and have it placed in the three date fields before the query is run. This would clinch it.
The date fields are formatteds thus; yyyy-mm-dd 00:00:00
Any suggestions . . . ? THANKS MUCH . . .Rick
CODE
SELECT OCDownloadRES.CITY,
Count(OCDownloadRES.LISTDATE) AS CountOfLISTDATE,
Count(OCDownloadRES.PENDINGDATE) AS CountOfPENDINGDATE,
Count(OCDownloadRES.CLOSEDDATE) AS CountOfCLOSEDDATE
FROM OCDownloadRES
GROUP BY OCDownloadRES.CITY, OCDownloadRES.PROPSUBTYPE
HAVING (((OCDownloadRES.PROPSUBTYPE)=[ENTER PROP TYPE]));