Hi everybody. I'm excited that someone might be able to help me, since I'm a newbie here.
I have a table EMPLOYEES. It has a column EMPLOYEES.SUPERVISOR (which is blank right now). Another table has the list of SUPERVISORS. I would like to put each appropriate supervisor's last name (SUPERVISORS.LASTNAME) in EMPLOYEES.SUPERVISOR. Both tables have a common column (.ORG). The statement I entered in the Row Source for EMPLOYEES.SUPERVISOR is:
SELECT SUPERVISORS.LASTNAME FROM SUPERVISORS
WHERE SUPERVISORS.ORG=EMPLOYEES.ORG
But it only gives me a combo/drop down box - instead of inserting the name automatically, and the drop down box only has 1 name in it -- there are 6 supervisors.
What am I doing wrong????
I have a table EMPLOYEES. It has a column EMPLOYEES.SUPERVISOR (which is blank right now). Another table has the list of SUPERVISORS. I would like to put each appropriate supervisor's last name (SUPERVISORS.LASTNAME) in EMPLOYEES.SUPERVISOR. Both tables have a common column (.ORG). The statement I entered in the Row Source for EMPLOYEES.SUPERVISOR is:
SELECT SUPERVISORS.LASTNAME FROM SUPERVISORS
WHERE SUPERVISORS.ORG=EMPLOYEES.ORG
But it only gives me a combo/drop down box - instead of inserting the name automatically, and the drop down box only has 1 name in it -- there are 6 supervisors.
What am I doing wrong????