I have a table with a date field and five different questions that can only be answered as "Yes", "No", "N/A".
I am trying to run a report that calculates compliance for each question at a determined date range parameter.
TblData([dtmReportDate],[strQ1],[strQ2],[strQ3],[strQ4],[strQ5])
I would like to run a report that When the user enters a date range, the report returns results like
Question 1, Question 2, Question 3, Question 4, Question 5
10/20=50%, 39/50=78%, 15/50=30%, 10/30=33%, 20/40=50%
The numerator is the count of the questions that were answered "yes"
The denominator is the count of the questions that were answered only "yes" or "no"
The Compliance is the percentage of the questions answered yes by the total questions answered yes or no
I am trying to run a report that calculates compliance for each question at a determined date range parameter.
TblData([dtmReportDate],[strQ1],[strQ2],[strQ3],[strQ4],[strQ5])
I would like to run a report that When the user enters a date range, the report returns results like
Question 1, Question 2, Question 3, Question 4, Question 5
10/20=50%, 39/50=78%, 15/50=30%, 10/30=33%, 20/40=50%
The numerator is the count of the questions that were answered "yes"
The denominator is the count of the questions that were answered only "yes" or "no"
The Compliance is the percentage of the questions answered yes by the total questions answered yes or no