Hi, I have a subform linked to a combo box on my main form. I changed one of the text boxes in the subform(the name of the box is UnionNumber) to a combo box and now it doesn't show any data. The rest of the subform show all correct data. I set the record source in the combo on the subform and when I check the record source for the subform the correct data is displayed. How do I get the combo to display the same data as in the record source query? Here's my record source:
Thanks, Jim
Code:
SELECT tblHours.tblHours_ID, tblHours.ST, tblHours.OT, tblHours.DT, tblHours.Shift, tblHours.WorkDate, tblHours.Jobs_ID, tblHours.ContractorID, tblUnion.UnionNumber
FROM tblUnion INNER JOIN (tblJobs INNER JOIN tblHours ON tblJobs.tblJobs_ID = tblHours.Jobs_ID) ON tblUnion.tblUnionID = tblJobs.JobLocal
ORDER BY tblHours.WorkDate DESC;