G
Guest
SELECT RecordDate, RecordType, Sum(HowMany) AS [Num]
FROM qrySummary1
GROUP BY RecordDate, RecordType;
This query refuses to do the grouping. Is it because one of the columns is a
date?
FROM qrySummary1
GROUP BY RecordDate, RecordType;
This query refuses to do the grouping. Is it because one of the columns is a
date?