K
KateM
I have a contacts database with a drop down list for organizations. When a
person picks the organization I need to have the department drop down show a
list of all the departments. This is just giving me 3 different departments
with their organization. Any suggestions??
SELECT tblDepartment.[Department Name], tblContacts.OrgName
FROM tblDepartment, tblContacts
WHERE (((tblContacts.OrgName)=[tblDepartment].[OrgName]) AND
((tblContacts.DeptName)=[tblDepartment].[Department Name]));
person picks the organization I need to have the department drop down show a
list of all the departments. This is just giving me 3 different departments
with their organization. Any suggestions??
SELECT tblDepartment.[Department Name], tblContacts.OrgName
FROM tblDepartment, tblContacts
WHERE (((tblContacts.OrgName)=[tblDepartment].[OrgName]) AND
((tblContacts.DeptName)=[tblDepartment].[Department Name]));