Using a query versus a table for the look up wizard

A

Amanda

Hello,

I have a field which I would like to use the lookup wizard for to generate a
drop down list for the user to select from.

My question is whether my databse would run faster if I used:

a query from an already established table as the values for the lookup
wizard,

or

to build a new table to hold the information for the lookup wizard to use.
 
D

Douglas J. Steele

I think you'll find few of us recommend the use of the Lookup Wizard. Lookup
fields only have a place in tables, and your users should never be working
directly with the tables. Create a form, and use a combo box on the form.
(See http://www.mvps.org/access/lookupfields.htm at "The Access Web" for
some of the other reasons why).

As to your question, if the data already exists in a table, you don't want
to store it redundantly in another table. Whether or not the query would be
inefficient shouldn't be an issue: having the data stored redundantly can
lead to all sorts of problems.
 

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