Hi,
This is a problem I keep coming back to. How do you write the SQL to show the the associated field in the ComboBox Field and the "list" while storing the Key field. I tried the query builder and came up with the following. Everything is okay except the list is 100+ records long instead of the 16 it is supposed to be.
Thanks and take care,
Daryl
SELECT ContactInformation.FacultyAdvisor, [LU_Instructor]![LastName] & ", " & [LU_Instructor]![FirstName] AS FacultyName FROM ContactInformation INNER JOIN LU_Instructor ON ContactInformation.FacultyAdvisor = LU_Instructor.InstructorID;