My database is a list of questions with yes/no/na box. There are 18 sections and approx. 100 questions. The main tables look like this:
tblCustomer:
customer#
CustomerLastName
Customer1stName
Date
Reviewer Name
tblQuestion:
AQ1
AQ2
AQ3
AQComments
BQ1
BQ2
BQ3
BQComments
etc....
The question table uses a lookup table for the yes/no/an answers
1 = yes
2 = no
3 = n/a
Now I need to create a report that totals the number of yes/no/na's.
Tally Report
AQ1.Do you live in a flood zone? Yes= 10; No = 150; N/A= 0
AQ2.Do you have flood insurance? Yes= 5; No= 5; N/A= 150
I need the Summary for each section and then grand totals.
I have no idea how to build the query to get this to work.
The actual questions are in the forms and reports. I am thinking of putting them into a table but that might be too big to query on.
tblCustomer:
customer#
CustomerLastName
Customer1stName
Date
Reviewer Name
tblQuestion:
AQ1
AQ2
AQ3
AQComments
BQ1
BQ2
BQ3
BQComments
etc....
The question table uses a lookup table for the yes/no/an answers
1 = yes
2 = no
3 = n/a
Now I need to create a report that totals the number of yes/no/na's.
Tally Report
AQ1.Do you live in a flood zone? Yes= 10; No = 150; N/A= 0
AQ2.Do you have flood insurance? Yes= 5; No= 5; N/A= 150
I need the Summary for each section and then grand totals.
I have no idea how to build the query to get this to work.
The actual questions are in the forms and reports. I am thinking of putting them into a table but that might be too big to query on.