R
Rose
My query is:
SELECT Count(Customer.Suffix) AS CountOfSuffix,
Customer.Register, Customer.IDProfession
FROM Customer
GROUP BY Customer.Register, Customer.IDProfession
HAVING (((Customer.Register)=-1));
I am attempting to get a grand total of the count, I have
tried =Count(*), =Sum(CountOfSuffix), =Sum(Suffix)....
Any help would be appreciated. TKS in advance.
SELECT Count(Customer.Suffix) AS CountOfSuffix,
Customer.Register, Customer.IDProfession
FROM Customer
GROUP BY Customer.Register, Customer.IDProfession
HAVING (((Customer.Register)=-1));
I am attempting to get a grand total of the count, I have
tried =Count(*), =Sum(CountOfSuffix), =Sum(Suffix)....
Any help would be appreciated. TKS in advance.