I have the following Select Statement<br><br>Select BLACCT, Sum(BLTOTQ) as sumofBLTOTQ, Sum(BLTOTW) as sumofBLTOTW, Count(BLACCT) as countofBLACCT, BLRECN, sum(BLSLAM) as sumofBLSLAM, sum(BLPAID) as sumofBLPAID, <br>YEAR(BLSHYY) From ttcdd.EDIBOLDB Where (Year(BLSHYY) >= 2000 and Year(BLSHYY) <= 2000) and BLACCT = UCase('xxxx') Group by BLACCT, BLRECN, BLSHYY Order By BLRECN<br><br><br>I want the Group By to Group at the Year level - i.e. Sum all entries in the same Year and return 1 line...If I put YEAR(BLSHYY) in Group By I get an error...How do I do this?<br>