J
Jay
I have the following query:
SELECT tblSales.Person, Count(tblSales.Model) AS CountOfModel
FROM tblSales;
This obviously gives me a very simple Count of the Models sold by each
Person.
What I want is to add a field which calulates what each individual Person's
total is as a percentage of the combined total.
How can I do this. Would I need a subquery? Any help/suggestions greatly
appreciated.
Regards....Jason
SELECT tblSales.Person, Count(tblSales.Model) AS CountOfModel
FROM tblSales;
This obviously gives me a very simple Count of the Models sold by each
Person.
What I want is to add a field which calulates what each individual Person's
total is as a percentage of the combined total.
How can I do this. Would I need a subquery? Any help/suggestions greatly
appreciated.
Regards....Jason