KD,
I strongly advise you NOT use the Lookup feature. Whenever you need lookup
functionality, you are much better off using a combo box on a form. From a
post from John Vinson (MVP) 11/11/2004 under the thread "how to make look up
field":
I would suggest you check out
http://www.mvps.org/access/lookupfields.htm
for a critique of this "misfeature".
Lookup fields have one benefit: they make it easier to add a Combo Box
control to a Form, by a couple of mouseclicks.
They have MANY disadvantages; the most serious is that they conceal
the actual content of your tables. With a Lookup field it APPEARS that
Table2 contains text from Table1 - BUT IT DOESN'T; it actually
contains a concealed numeric ID, and when you try to sort data, or
query it, you'll get wierd results because you *think* you're
searching for "Jones" while what's actually in the table is 193.
Lookup fields are NEVER NECESSARY. Instead, use a Form to view and
edit your data (rather than table datasheets) and use a Combo Box on
the form to "look up" data from the related table, and store it in
your current table. If you have trouble using the Toolbox Wizard to do
this, please post back with a description of your tables, how they are
related, and what you want to store and to see.
John W. Vinson[MVP]
Hope that helps.
Sprinks