Striker3070,
In a well normalized database you would not store the description in two
tables. You can use DLookup to get the description to display on your form.
If numeric...
=DLookup("Fld2", "YourTable", "[Fld1]=" & Me![Fld1])
If text...
=DLookup("Fld2", "YourTable", "[Fld1]='" & Me![Fld1] & "'")
OR drop the table in the query and display it as part of the query that is
the RecordSource of the form.
--
Gina Whipp
"I feel I have been denied critical, need to know, information!" - Tremors
II
http://www.regina-whipp.com/index_files/TipList.htm
"Striker3070" <(E-Mail Removed)> wrote in message
news:(E-Mail Removed)...
> Access 2007, have a table that looks up two fields in another table. Fld1
> and Fld2. Fld2 is a description of Fld1. So when the user select Fld1,
> how can I get Fld2 to carry on to this new table?