Appreciate any help in how to calculate the count of yes reponses along each column in an Acces query. I have a Responses table were each respondent answers ticks yes/no to each of five questions.
I have used something like SELECT Count([Q1]) AS Ques1, Count([Q2]) AS Ques2
FROM Questions
WHERE (((Questions.Q1)=Yes) AND ((Questions.Q2)=Yes));
But it only returns the number of the rows where both values are yes - I would like tthe count for each column seperately. CrossTab query does not work because I have 5 columns in all. Also tried Union query - it returns to correct number of counts but displays them in one column with no tile headings for the questions.
I have used something like SELECT Count([Q1]) AS Ques1, Count([Q2]) AS Ques2
FROM Questions
WHERE (((Questions.Q1)=Yes) AND ((Questions.Q2)=Yes));
But it only returns the number of the rows where both values are yes - I would like tthe count for each column seperately. CrossTab query does not work because I have 5 columns in all. Also tried Union query - it returns to correct number of counts but displays them in one column with no tile headings for the questions.