Calculation in a report

hiwelcome

Registered User.
Local time
Yesterday, 22:11
Joined
Aug 14, 2015
Messages
47
Hello,

I'm trying to find the easiest way to perform a calculation in a report I'm creating. Basically I have a table where there are a bunch of questions that have "Yes", "No" and "N/A" answers. I'd like the report to show, for each record, the % of Yes answers. The "N/A" answers are ignored in the calculation. For example, in the table, if Question1 = No, Question2 = No, Question3 = Yes, and Question4 = N/A, then I'd like the report to show "33%". Seems easy enough but I'm not sure exactly how to go about it/what code to use, etc.
 
Do all calcs you can in queries.
Make query 1, Q1, count the results.
Then Q2 will use Q1 to calc percent from the totals.
The report uses Q2.
 

Users who are viewing this thread

Back
Top Bottom