When running a query and there are no results, the query responds by returning no lines.
I want to have the query return a line with a zero when there are no results.
SELECT tblDiag.Status, Count(tblDiag.Status) AS CountOfStatus
FROM tblDiag
WHERE (((tblDiag.DateOfCloseCall) Between [Start Date] And [End Date]))
GROUP BY tblDiag.Status
HAVING (((tblDiag.Status)=”Open”));