P
Pietro
Hi,
I've the following query:
SELECT Assistq2.ID, Assistq2.[Agent Name], Assistq2.Language, Assistq2.Type,
Count(Assistq2.Code) AS Cases
FROM Assistq2
GROUP BY Assistq2.ID, Assistq2.[Agent Name], Assistq2.Language, Assistq2.Type
ORDER BY Count(Assistq2.Code) DESC;
I need to add a new coulmn "Volume" to know thw total volume of the cases
where type =[forms]![ragents]![type2] so that i may select a type from the
combobox on the form to know the number of cases and percentage of every
agent...
I've the following query:
SELECT Assistq2.ID, Assistq2.[Agent Name], Assistq2.Language, Assistq2.Type,
Count(Assistq2.Code) AS Cases
FROM Assistq2
GROUP BY Assistq2.ID, Assistq2.[Agent Name], Assistq2.Language, Assistq2.Type
ORDER BY Count(Assistq2.Code) DESC;
I need to add a new coulmn "Volume" to know thw total volume of the cases
where type =[forms]![ragents]![type2] so that i may select a type from the
combobox on the form to know the number of cases and percentage of every
agent...