NewShoes, I'm assuming that this "Notes" field is defined as a Memo Datatype since Text fields are limited to 256 characters and you speak of some notes as being 'sizable.' If this is true the field cannot be part of the Combobox. When using the Wizard to create a Combobox Access will not even make Memo Fields available for inclusion. If you don't use the Wizard but simply use a SQL statement to populate the Combobox, and include the Memo Field, Access will truncate its contents to 256 characters.
What you can do is to make a form for displaying your data and then, using the Combobox Wizard, select the third option "Find a record on my form based on the Value I selected in my combo box."
Access will generate the code to retrieve the record with the appropriate notes. There is one caveat, though; the field that you choose to retrieve the record by must be unique to that employee, such as an Employee ID.
The code Access uses for this utilizes FindFirst. If you were to try retrieving the record by the employees Last Name, for instance, and had employees
Smith, Anne
Smith, Jane
Smith, Xavier
assuming that the records are sorted by Last Name then First Name, Access would always retrieve the record for Anne Smith regardless of which Smith you selected from the Combobox.
Using a unique ID number gets around this.
If an ID number isn't available you can use a concatenated LastName /FirstName field to retrieve the record by, but that requires a little more work.
I have a short tutorial I can post here if you need to go this route, but even LastName/FirstName doesn't guarantee uniqueness.
Linq ;0)>