Re: Counting records by a date field in Access
« Reply #1 on: Oct 20th, 2006, 10:34am »
Or to specify only records that have no null values
SELECT bec3_manual_list.[Date Scanned], Count(bec3_manual_list.File) AS [No Of Books] FROM bec3_manual_list GROUP BY bec3_manual_list.[Date Scanned] HAVING (((bec3_manual_list.[Date Scanned]) Is Not Null) AND ((Count(bec3_manual_list.File)) Is Not Null));