Look up field in table not coming up as look up in form

Margarita

Registered User.
Local time
Today, 13:39
Joined
Aug 12, 2011
Messages
185
Hello, I have a table, Transactions, in which one of the fields is a look up field, looking up values from another table. I created a form based on Transactions and I want all new records to be added using this form. However, the field in question is NOT coming up on the form with a drop down menu. The user has to type in the values. How can I re-create the field as a look up in the form, but retain the values which have already been entered into the table?
Thank you.
 
Please show us a jpg of the form, and the rowsource of the combo box.
 
Hello, the field is not a combobox. The form was created directly from the table using the wizard, so the source of the field is the corresponding field in the table. I want to have the user do additions and edits in this form preferably without having to write vba on the back end, so that's why i want to fields on the form to be directly linked to the fields in the table. Shouldn't a look up field in a table be automatically created with a drop down menu in the form?
Thank you.
 
Lookups should not be used at table level, unless you are very experienced and know the pitfalls. Use them at form level but not at table level. Remove the lookup from the table and set them using combo's on forms.

See here for more about this:
http://www.mvps.org/access/lookupfields.htm
 
Last edited:
Lookups should not be used at table level, unless you are very experienced and know the pitfalls. Use them at form level but not at table level. Remove the lookup from the table and set them using combo's on forms.

See here for more about this:
http://www.mvps.org/access/lookupfields.htm

I am convinced! I will remove the look up from the table. It's just that it's so convenient in the short term...
Thank you!
 

Users who are viewing this thread

Back
Top Bottom