Well, yes you can, but the report is the proper way to do it.
Although I wouldn't think I would ever find a case where this is a good
solution, what I did just because the question was so (PCSpeak Begin)
interesting and unusual (PCSpeak End), I had to try it.
A created two querys based on the same table. One detail and one totals.
Then I created a union query to pull them together:
SELECT "A" As Identifier, Activity, Jan, Feb, Mar, Apr, SumOfMay As May
FROM _xdetail;
UNION ALL SELECT "Z" As Identifier, "Totals" As Activity, SumOfJan,
SumOfFeb, SumOfMar, SumOfApr, SumOfSumOfMay As May FROM _xfoot
ORDER BY Identifier, Activity;
(Can the answer be more bizzare than the question)