In the database described in my previous messages, in Form view of the main form, my subform is completely blank. In Form view of the subform itself, only the Form Header displays; the Detail area is blank. How can I change the settings so the subform displays?
Here's the Record Source of the subform:
SELECT Publications.PublicationName, PublicationColumns.PublicationColumnName
FROM AllDeathRecords INNER JOIN (Publications INNER JOIN (PublicationColumns INNER JOIN MultipleObituaries ON PublicationColumns.PublicationColumnID = MultipleObituaries.PublicationColumnID) ON Publications.PublicationID = MultipleObituaries.PublicationID) ON (Publications.PublicationID = AllDeathRecords.PublicationID) AND (PublicationColumns.PublicationColumnID = AllDeathRecords.PublicationColumnID) AND (AllDeathRecords.PersonID = MultipleObituaries.PersonID);
Here's a screen shot of the Record Source table relationships:
![]()