Count By Month

G

Guest

I have a query that I'm trying to count by month. Right now I have it
counting by days but now I want to count that up by months. How would I
modify my query to do so?

SELECT qryVariance.FLSHIPDATE, Count(qryVariance.VARIANCE) AS CountOfVARIANCE
FROM qryVariance
GROUP BY qryVariance.FLSHIPDATE;
 
G

Guest

Perfect! Thanks!

scubadiver said:
format([FLSHIPDATE], "mmm")

will give the date in month: "Jan", "Feb", .....

--
www.ae911truth.org



Secret Squirrel said:
I have a query that I'm trying to count by month. Right now I have it
counting by days but now I want to count that up by months. How would I
modify my query to do so?

SELECT qryVariance.FLSHIPDATE, Count(qryVariance.VARIANCE) AS CountOfVARIANCE
FROM qryVariance
GROUP BY qryVariance.FLSHIPDATE;
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads


Top