K
ktm400
I have a query that goes like this:
SELECT Avg([Boiler steam production]![CurrentSteamFlow]) AS [Average_lbs/hour]
FROM [Boiler steam production];
I assume that this is going to add all the fields in the CurrentSteamflow
column and average them....correct?
My next query goes like this:
SELECT Avg([Boiler steam production]![CurrentSteamFlow]) AS [Average_lbs/hour]
FROM [Boiler steam production]
GROUP BY [Boiler steam production].ReadingDate;
I expect this last query to average the CurrentSteamFlow column fields by
date ...... is this a correct assumption?
Right now I have 3 days worth of readings and this last query does group
them by ReadingDate, but if I add the 3 results up and divide by 3 it does
not equal the result of the first query...
Iam missing something here...any help would be greatly appreciated.
Thanks
SELECT Avg([Boiler steam production]![CurrentSteamFlow]) AS [Average_lbs/hour]
FROM [Boiler steam production];
I assume that this is going to add all the fields in the CurrentSteamflow
column and average them....correct?
My next query goes like this:
SELECT Avg([Boiler steam production]![CurrentSteamFlow]) AS [Average_lbs/hour]
FROM [Boiler steam production]
GROUP BY [Boiler steam production].ReadingDate;
I expect this last query to average the CurrentSteamFlow column fields by
date ...... is this a correct assumption?
Right now I have 3 days worth of readings and this last query does group
them by ReadingDate, but if I add the 3 results up and divide by 3 it does
not equal the result of the first query...
Iam missing something here...any help would be greatly appreciated.
Thanks