J Jim W Registered User. Local time Today, 21:41 Joined Feb 4, 2003 Messages 198 May 6, 2004 #1 I'm trying to build a simple Totals query. I have a Date entered value I have a number field. I would like to be able to total the Number field by Month. How do I do this? Jim
I'm trying to build a simple Totals query. I have a Date entered value I have a number field. I would like to be able to total the Number field by Month. How do I do this? Jim
jfgambit Kinetic Card Dealer Local time Today, 21:41 Joined Jul 18, 2002 Messages 798 May 6, 2004 #2 SELECT Month([Date]) AS [Month], Sum(tblInfo.Items) AS SumOfItems FROM tblInfo GROUP BY Month([Date]); HTH
SELECT Month([Date]) AS [Month], Sum(tblInfo.Items) AS SumOfItems FROM tblInfo GROUP BY Month([Date]); HTH