I have a database that keeps track of donations. In the one table I have the donors unique information; name, address, etc. In another table I keep track of the donations by date, type and amount. This data is entered on a form that contains a subform that tracks the donations.
Problem: Each time I query the database for the names of the donors who have made a donation let's say for the last 6 months, I get the donors name in the query results for each hit that satisfies the query. For example, if the donor made 10 donations within the last 6 months, his information appears 10 times in the query results when I only need to identify it once.
Question: Is there a way force the query to produce only one instance (record) in the result eventhough there may be multiple records in the subform that satisfy the query.
Problem: Each time I query the database for the names of the donors who have made a donation let's say for the last 6 months, I get the donors name in the query results for each hit that satisfies the query. For example, if the donor made 10 donations within the last 6 months, his information appears 10 times in the query results when I only need to identify it once.
Question: Is there a way force the query to produce only one instance (record) in the result eventhough there may be multiple records in the subform that satisfy the query.