Question about lookup fields, how to get around them?

D

Dennis

I have a database I was building as a project and I read how bad
Look-up fields were in tables and I was wondering how one would go
about doing this. I have fields that I want to have the user input
certain information like a choice for a transmission so they would
have to enter "Standard" or "Automatic". I would like the user to use
a combo box to enter this information with pre-defined selections.
Does this make sense and can anybody help with some good ideas?

Thanks for any help, Dennis
 
T

tina

yes, look-up fields are a pain in tables, but your users
should enter data only thru forms anyway, never directly
into a table.
so in your form design, create a combo box instead of a
text box, for the field(s) where you want to specify data
entry choices. if you've never done it before, the wizard
will walk you thru it.
fyi, a value list is the quickest to create when you want
to offer only a few selections. but if you create a table
to hold the selections and base the combo box on that
table, in the long run it will be easier to maintain the
list (and safer, if you set your table relationships
correctly).

hth
 
R

Rick Brandt

Dennis said:
I have a database I was building as a project and I read how bad
Look-up fields were in tables and I was wondering how one would go
about doing this. I have fields that I want to have the user input
certain information like a choice for a transmission so they would
have to enter "Standard" or "Automatic". I would like the user to use
a combo box to enter this information with pre-defined selections.
Does this make sense and can anybody help with some good ideas?

Thanks for any help, Dennis

Use forms for input and place the ComboBox on the form.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top