GingGangGoo
Registered User.
- Local time
- Today, 06:23
- Joined
- Dec 14, 2010
- Messages
- 121
I have been successfully building and using select queries for awhile, but now I am stumped. I have a the following query, Capture1. The result is what I want, a record per contact including activity time. In the report I have based on this, I can then see each contact once with all their activity time totaled. So far so good. I have another table where I match up Contacts with surveys they have completed, including the completion date and if a particular survey, also the score. If I query this as I do the contacts/activity hrs, again I would get one record per contact including survey data.
My challenge is, in the report, I need to have each of those reports listed, not summed. So that my report would look something like this:
Column Column ... etc
Name Birthdate
survey 1/ completed / score
survey 2/completed / score
Ok, when I add the related table first query, related by contact ID, (Capture2) I get only contacts who have a survey, but I need to see every contact from the first even if they don't have any surveys. I hope that makes sense. I want the end result to be a table that shows me every contact where some will have surveys and some not.
I have experimented with making the 1st query, Capture1, into a make table query, and then creating a second append query for the survey related data, to append records to the new table. That works, however, I realized that the make table query is now a local table, not a linked one (all my tables are linked to my Access web app), so it won't automatically update and I'm not sure this is the most efficient way to get what I need.
Can someone advise please.
Thanks
My challenge is, in the report, I need to have each of those reports listed, not summed. So that my report would look something like this:
Column Column ... etc
Name Birthdate
survey 1/ completed / score
survey 2/completed / score
Ok, when I add the related table first query, related by contact ID, (Capture2) I get only contacts who have a survey, but I need to see every contact from the first even if they don't have any surveys. I hope that makes sense. I want the end result to be a table that shows me every contact where some will have surveys and some not.
I have experimented with making the 1st query, Capture1, into a make table query, and then creating a second append query for the survey related data, to append records to the new table. That works, however, I realized that the make table query is now a local table, not a linked one (all my tables are linked to my Access web app), so it won't automatically update and I'm not sure this is the most efficient way to get what I need.
Can someone advise please.
Thanks