how can i limit to a list on a table

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

how do i set the properties for a lookup column on a table so that the values
i enter for that field have to be listed on the list box?
--
 
In general, you should not define a lookup in your table. Do it in your
forms. There is a setting in the properties for "limit to list".
 
how do i set the properties for a lookup column on a table so that the values
i enter for that field have to be listed on the list box?

You can't.

The Lookup feature in table datasheets is of VERY limited utility.
This is one of the limitations.

Instead, use a Form; set the RowSource property of the listbox to a
query selecting the values from the table. If values repeat in the
table, set that query's Unique Values property to Yes.

John W. Vinson[MVP]
 

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

Back
Top