Drop down menu

  • Thread starter Thread starter Donna
  • Start date Start date
D

Donna

In Access 2002 [Inventory Control]. How can I delete and
prevent duplicate product names from the dropdown menu?
 
It depends on what your drop-down is based on. If it is pulling values from
a table, just set up the table to not allow duplicate values.

Rick B


In Access 2002 [Inventory Control]. How can I delete and
prevent duplicate product names from the dropdown menu?
 
You could also put something like the following in the source if you want to
pull all the unique values from a table of transactions, for example...


SELECT DISTINCT [InventoryTransactions].[ProductName] FROM
InventoryTransactions ORDER BY [InventoryTransactions].[ProductName];



Rick B



In Access 2002 [Inventory Control]. How can I delete and
prevent duplicate product names from the dropdown menu?
 

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