If a field is null, how do I get it to print out the missing string and place a value of 0 for the count?
SELECT Count(Inquires.Actual_ID) AS CountOfActual_ID, Inquires.Actual_ID
FROM Inquires
WHERE (((Inquires.[Date Sent]) Between DateSerial(Year(Date()),Month(Date())-3,0) And DateSerial(Year(Date()),Month(Date())-2,0)))
GROUP BY Inquires.Actual_ID
ORDER BY Inquires.Actual_ID;
Actual Table has 11 rows of data with 2 columns
Actual_ID
Actual
Actual_ID is linked by a 1 to many relationship to the Actual_ID field in the Inquries Table.