T
tope12
Here is the query.
SELECT Nz(Count(a.com_num),0) AS Total, a.com_type
FROM a
WHERE (((a.date) Between forms![date range]![Start Date] And forms![Date
Range]![End Date]))
GROUP BY a.com_type;
It returns
com_type Total
mail 10
email 20
I want the query to return this output:
com_type Total
mail 10
email 20
phone 0
Fax 0
Is this possible?
SELECT Nz(Count(a.com_num),0) AS Total, a.com_type
FROM a
WHERE (((a.date) Between forms![date range]![Start Date] And forms![Date
Range]![End Date]))
GROUP BY a.com_type;
It returns
com_type Total
mail 10
email 20
I want the query to return this output:
com_type Total
mail 10
email 20
phone 0
Fax 0
Is this possible?