G
Gary B
Regarding the following query, how can I show ClaimCount
for each month.
A Row for each month. But over a two year period, there would be 24 rows
returned, not a steady 12.
SELECT DateValue(Claims.ClaimsDate) AS ClaimDate, Count(Claims.ClaimsKey) AS
ClaimCount
FROM Claims
GROUP BY DateValue(Claims.ClaimsDate)
for each month.
A Row for each month. But over a two year period, there would be 24 rows
returned, not a steady 12.
SELECT DateValue(Claims.ClaimsDate) AS ClaimDate, Count(Claims.ClaimsKey) AS
ClaimCount
FROM Claims
GROUP BY DateValue(Claims.ClaimsDate)