I just can't figure out why this doesn't produce any results, just 0?
What I'm trying to do is get all of the sales for Aug 06 and then group (sort?) them by all cites in a report.
Thanks . . . Rick
Code:
SELECT OCDownloadRES.CITY, Format("LISTDATE","yyyy-mm") AS Expr1
FROM OCDownloadRES
WHERE (((Format("LISTDATE","yyyy-mm"))="2006-08") AND ((OCDownloadRES.PROPSUBTYPE)="PROPSFR"));
What I'm trying to do is get all of the sales for Aug 06 and then group (sort?) them by all cites in a report.
Thanks . . . Rick