houstonbill
Technical User
- Nov 6, 2006
- 92
This has me stumpted. Have a query composed to 2 tables that make up the form. When the user selects a challenge ID and fills in a response, it appears the most recent entry is replacing the previous. Therefore, if several people responded at different times to the same ID #, then I will not see all the responses and cannot pull them all into a report. Can you take a look at my SQL and let me know what might be wrong?
SELECT tbl_Challenge.ChallID, tbl_Challenge.Challenge, tbl_Challenge.NeedBy, tbl_Challenge.BadgeID, tbl_Challenge.Department, tbl_Challenge.ChallDate, tbl_CallengeReview.ChallComments, tbl_Challenge.ClosedDte, tbl_CallengeReview.ChDate
FROM tbl_Challenge LEFT JOIN tbl_CallengeReview ON tbl_Challenge.ChallID = tbl_CallengeReview.ChallID;
SELECT tbl_Challenge.ChallID, tbl_Challenge.Challenge, tbl_Challenge.NeedBy, tbl_Challenge.BadgeID, tbl_Challenge.Department, tbl_Challenge.ChallDate, tbl_CallengeReview.ChallComments, tbl_Challenge.ClosedDte, tbl_CallengeReview.ChDate
FROM tbl_Challenge LEFT JOIN tbl_CallengeReview ON tbl_Challenge.ChallID = tbl_CallengeReview.ChallID;