Hello All! I am needing a push in the right direction.A little background for my question.
I have this table and it deals with quality assurance. There are five questions that the QA department asks the caller. The answers are represented by checkboxes. I think there are 13 total checkboxes. A couple questions have three answers.
I need a summary report for a given time frame. That will have the company the caller works for, and a percentage for each answer to each question. I know how to get a time frame. That's easy. I know how to group by company. Again simple. I know how to use count functions but im stumped on how to do the counts on this. Here is what I was thinking. I need to almost run a query for each answer and do something like
select count(answercheckbox as count of answercheckbox)
from table
where checkbox = 1
What does everyone think?
Thanks all!
Jamie