This seems like a strange problem that really should work, but don't know why it doesn't...
I have a report that's based on a query. The query uses group by functions. Short example:
select Itemgroup, count(*) as TotalNr, sum(Turnover) as SumTurnover
from Campaign_det
group by Itemgroup;
The...