Because you can't group on fields selected with *?
If you are doing this in the query designer just select all the fields you want from the table and drag them from the list down to the field row.
Then from the dropdown select Sum/Count for the fields you want to count.
PS That's assuming you are using the query designer.
[/FONT]
[FONT=Courier New]SELECT Count(Months.ID) AS CountOfID, Count(Months.MyMOnths) AS CountOfMyMOnths, Count(Months.UserNames) AS CountOfUserNames, Sum(Months.REVS) AS SumOfREVS, *
FROM Months;
As Norie has said numerous times, remove the "*".
Code:[/FONT] [FONT=Courier New]SELECT Sum(Months.rEVS) AS SumOfrEVS[/FONT] [FONT=Courier New]FROM Months;[/FONT] [FONT=Courier New] [/FONT] [FONT=Courier New]