T
TeeSee
Contacts is a subform within Company. I am trying to get just the
contacts to show in the combo that are employed by the company on the
main form. I think I need two joins but can't see how I can utilize
the two ONs
Could someone please put me straight. Thanks
SELECT tblContacts.pkContactID,
tblContacts.txtLastName,tblCompany.pkCompanyID,tblLINKCompanyContacts.fpkCompanyID
FROM tblContacts( INNER JOIN tblCompany( INNER JOIN
tblLINKCompanyContacts ON
tblLINKCompanyContacts.fpkCompanyID=tblCompany.pkCompanyID )) ORDER BY
tblContacts.txtLastName;
contacts to show in the combo that are employed by the company on the
main form. I think I need two joins but can't see how I can utilize
the two ONs
Could someone please put me straight. Thanks
SELECT tblContacts.pkContactID,
tblContacts.txtLastName,tblCompany.pkCompanyID,tblLINKCompanyContacts.fpkCompanyID
FROM tblContacts( INNER JOIN tblCompany( INNER JOIN
tblLINKCompanyContacts ON
tblLINKCompanyContacts.fpkCompanyID=tblCompany.pkCompanyID )) ORDER BY
tblContacts.txtLastName;