Hi all!
I am trying to generate a report that counts the number of questions answered by applicants. I am using two tables (more, but they aren't relevant to this question):
Table A: (main table)
[ul]
[li]review number (primary key)[/li]
[li]Date of review[/li]
[li]applicant info[/li]
[li]etc, etc[/li]
[/ul]
Table B: (questions table)
[ul]
[li]review number (this is the link to table A, and is the MANY part of the relationship)[/li]
[li]Question 1[/li]
[li]Question 2, 3, etc (you get the idea)[/li]
[/ul]
What I *want* to do is generate a report that says:
BETWEEN (date of review X) and (date of review Y)
Question 1 (x number of responses)
Question 2 (x number of responses)
etc.
What it is actually doing:
Question 1 (x number of responses on date X)
Question 1 (x number of responses on date Y)
Question 1 (x number of responses on date Z)
Question 2 (same, etc)
It's driving me nuts. I am thinking that the "select" query behind the report is to blame here, but I don't know if I need some other type of query? Will that help?
I am hoping that it's something minor that I have overlooked. I appreciate any and all suggestions/resources!
I am trying to generate a report that counts the number of questions answered by applicants. I am using two tables (more, but they aren't relevant to this question):
Table A: (main table)
[ul]
[li]review number (primary key)[/li]
[li]Date of review[/li]
[li]applicant info[/li]
[li]etc, etc[/li]
[/ul]
Table B: (questions table)
[ul]
[li]review number (this is the link to table A, and is the MANY part of the relationship)[/li]
[li]Question 1[/li]
[li]Question 2, 3, etc (you get the idea)[/li]
[/ul]
What I *want* to do is generate a report that says:
BETWEEN (date of review X) and (date of review Y)
Question 1 (x number of responses)
Question 2 (x number of responses)
etc.
What it is actually doing:
Question 1 (x number of responses on date X)
Question 1 (x number of responses on date Y)
Question 1 (x number of responses on date Z)
Question 2 (same, etc)
It's driving me nuts. I am thinking that the "select" query behind the report is to blame here, but I don't know if I need some other type of query? Will that help?
I am hoping that it's something minor that I have overlooked. I appreciate any and all suggestions/resources!