Hi, Ron.
Don't use a lookup field. For an explanation of why, please see the tip,
"The Evils of Lookup Fields in Tables," on the following Web page:
http://www.mvps.org/access/lookupfields.htm
Instead, use a combo box on a form (where all data entry should be made
anyway). The combo box can use a multi-columned query as its Row Source
Property with the Column Count and Column Widths Properties set to only show
the necessary columns. The first visible column will be the column that is
displayed in the combo box. For example, if the query has four columns with
the last three of them visible (the first column is the primary key, so use
0" width to make it invisible), the second column will show in the combo box
after the user makes the selection:
Column Count: 4
Column Widths: 0";0.5";1";1"
HTH.
Gunny
See
http://www.QBuilt.com for all your database needs.
See
http://www.Access.QBuilt.com for Microsoft Access tips.
(Please remove ZERO_SPAM from my reply E-mail address so that a message will
be forwarded to me.)
- - -
If my answer has helped you, please sign in and answer yes to the question
"Did this post answer your question?" at the bottom of the message, which
adds your question and the answers to the database of answers. Remember that
questions answered the quickest are often from those who have a history of
rewarding the contributors who have taken the time to answer questions
correctly.