D davie303 New member Local time Today, 02:35 Joined Oct 26, 2000 Messages 6 Nov 15, 2001 #1 I have a filed in my Mdb called[DateInitiated]and i want to return a count of all records in my Mdb initiated per month. can any one help Count of records for each month Thanks Davie
I have a filed in my Mdb called[DateInitiated]and i want to return a count of all records in my Mdb initiated per month. can any one help Count of records for each month Thanks Davie
A araskas Registered User. Local time Today, 02:35 Joined May 31, 2000 Messages 38 Nov 16, 2001 #2 SELECT Year([DateInitiated]) AS [YEAR], Month([DateInitiated]) AS [MONTH], Count([DateInitated]) AS [Count] FROM myTable GROUP BY Year([DateInitiated], Month([DateInitiated]);
SELECT Year([DateInitiated]) AS [YEAR], Month([DateInitiated]) AS [MONTH], Count([DateInitated]) AS [Count] FROM myTable GROUP BY Year([DateInitiated], Month([DateInitiated]);