H
hotplate
Hi,
I am making a chart using a trend line format. I am counting the
number of occurrances per day. Days with no occurrances should give me
a zero, but instead it is like it has no value instead. How do make
the graph put a zero for the value instead of nothing?
Here is the query for the graph:
SELECT (Format([DateInsp],"Short Date")) AS Expr1,
Count(qryLineChart.ID) AS CountOfID
FROM qryLineChart
GROUP BY (Format([DateInsp],"Short Date")), (Int([DateInsp]))
ORDER BY (Int([DateInsp]));
James
I am making a chart using a trend line format. I am counting the
number of occurrances per day. Days with no occurrances should give me
a zero, but instead it is like it has no value instead. How do make
the graph put a zero for the value instead of nothing?
Here is the query for the graph:
SELECT (Format([DateInsp],"Short Date")) AS Expr1,
Count(qryLineChart.ID) AS CountOfID
FROM qryLineChart
GROUP BY (Format([DateInsp],"Short Date")), (Int([DateInsp]))
ORDER BY (Int([DateInsp]));
James