My select statement looks like the followimg. This is just an idea to give you an example of the tables i am using.
'SELECT tbl_StaffSurveyMain.*, tbl_SectionOne.*, tbl_SectionTwo.*, tbl_SectionThree.*, tbl_SectionFour.*, tbl_SectionFive.*, tbl_SectionSix.*
'FROM (((((tbl_StaffSurveyMain INNER JOIN tbl_SectionOne
'ON tbl_StaffSurveyMain.FormRef = tbl_SectionOne.FormRef)
'INNER JOIN tbl_SectionTwo ON tbl_StaffSurveyMain.FormRef = tbl_SectionTwo.FormRef)
'INNER JOIN tbl_SectionThree ON tbl_StaffSurveyMain.FormRef = tbl_SectionThree.FormRef)
'INNER JOIN tbl_SectionFour ON tbl_StaffSurveyMain.FormRef = tbl_SectionFour.FormRef)
'INNER JOIN tbl_SectionFive ON tbl_StaffSurveyMain.FormRef = tbl_SectionFive.FormRef)
'INNER JOIN tbl_SectionSix ON tbl_StaffSurveyMain.FormRef = tbl_SectionSix.FormRef;
|