Table has two fields; Date and Deposits. Date Format: mm/dd/yyyy Table has 500+ records. In need of Query for pulling the "total sum" for each month in ONE QUERY. The below Query pulls the Total for the month of January. SELECT
SUM(Deposits) AS January
FROM Bus_Chk_Reg
WHERE (Date =1) I'm hoping there is a simple method to pull the results for all 12 months!? All feedback appreciated. Thanks