I am trying to set up a field so that as I type in information in one field,
it will automatically fill the next field. ex.: Employee Name, ID Number
This is actually typically NOT something you want to do, if you mean
that you want to *store* the Employee Name in a second table.
If you just want to (say) pick the employee name from a Combo Box and
have the ID appear in a separate textbox, JUST FOR VIEWING - you can
easily do so; set the Control Source of the textbox to
=comboboxname.Column(n)
where n is the zero based index of the field in the combo.
What's the context? What's the source of the employee data, and what
do you want to do with that data once you've found it?
John W. Vinson[MVP]