R
red6000
My table of data is called QA
I have 3 columns, 1 called CSRName and 1 called Correct and 1 for a date
What I would like is a query the % of 'Yes' that appear in the 'Correct'
column per name that appears in the CSRName column.
I can do a query to tell me how many 'yes' and also a query for the 'No',
but how do I do a calculation in the query. My query for 'Yes' is:
SELECT QAs.CSRName, Count(QAs.[Correct?]) AS Number_Correct
FROM QAs
WHERE (((QAs.[Correct?])="Yes") AND ((Month([Date case worked by CSR]))=7))
GROUP BY QAs.CSRName;
Many thanks
I have 3 columns, 1 called CSRName and 1 called Correct and 1 for a date
What I would like is a query the % of 'Yes' that appear in the 'Correct'
column per name that appears in the CSRName column.
I can do a query to tell me how many 'yes' and also a query for the 'No',
but how do I do a calculation in the query. My query for 'Yes' is:
SELECT QAs.CSRName, Count(QAs.[Correct?]) AS Number_Correct
FROM QAs
WHERE (((QAs.[Correct?])="Yes") AND ((Month([Date case worked by CSR]))=7))
GROUP BY QAs.CSRName;
Many thanks
