G
Guest
I have the following summary query for a production database:
Date Processor Sum Of MiscTime
The SQL window shows this-
SELECT [Date], Processor, Sum(MiscTime) As MiscTimeSum
FROM ProdTable1
GROUP BY [Date], Processor
The query is still producing this result:
Ex: Current output
Date Processor Sum Of MiscTime
10/18/2004 Sally 2.5
10/18/2004 Sally 3.0
10/18/2004 Sally 0.5
10/19/2004 Ruth 3.5
10/19/2004 Ruth 2.5
What I need:
Date Processor Sum Of Misc Time
10/18/2004 Sally 6
10/19/2004 Ruth 5
Why will the query not collapse/condense/combine the numbers for the same
date?
Thanks
dlemarr
Date Processor Sum Of MiscTime
The SQL window shows this-
SELECT [Date], Processor, Sum(MiscTime) As MiscTimeSum
FROM ProdTable1
GROUP BY [Date], Processor
The query is still producing this result:
Ex: Current output
Date Processor Sum Of MiscTime
10/18/2004 Sally 2.5
10/18/2004 Sally 3.0
10/18/2004 Sally 0.5
10/19/2004 Ruth 3.5
10/19/2004 Ruth 2.5
What I need:
Date Processor Sum Of Misc Time
10/18/2004 Sally 6
10/19/2004 Ruth 5
Why will the query not collapse/condense/combine the numbers for the same
date?
Thanks
dlemarr