G
gumby
I would like my Avg(Calls.TotalCumScore) to ignore Null Values and
Zeros.
SELECT Calls.Monitor, Avg(Calls.TotalCumScore) AS AvgOfTotalCumScore,
Count(Calls.Completed) AS CountOfCompleted
FROM Calls
GROUP BY Calls.Monitor;
I think it is already ignoring the null values, but how do i get it to
ignore the Zeros?
David
Zeros.
SELECT Calls.Monitor, Avg(Calls.TotalCumScore) AS AvgOfTotalCumScore,
Count(Calls.Completed) AS CountOfCompleted
FROM Calls
GROUP BY Calls.Monitor;
I think it is already ignoring the null values, but how do i get it to
ignore the Zeros?
David