
Originally Posted by
June7
You are not using form/subform structure. You have several 1-to-1 related tables joined into one query as the RecordSource for a single form and the joins are not correct. For instance, in form SeekTestMain the SQL statement is joining SeekTestDrugUse_new and SeekTestMistrust to SeekTestAlchUse_new and SeekTestAlchUse_new to SeekTestDemographics_New (all are INNER join). I think all 3 of these should RIGHT join to SeekTestDemographics_New, like:
SELECT SeekTestDemographics_new.*, SeekTestMistrust.*, SeekTestDrugUse_new.*, SeekTestAlchUse_new.*
FROM SeekTestMistrust RIGHT JOIN (SeekTestDrugUse_new RIGHT JOIN (SeekTestAlchUse_new RIGHT JOIN SeekTestDemographics_new ON SeekTestAlchUse_new.CASEID = SeekTestDemographics_new.CASEID) ON SeekTestDrugUse_new.CASEID = SeekTestDemographics_new.CASEID) ON SeekTestMistrust.CASEID = SeekTestDemographics_new.CASEID;