List Box

B

Bob Leonard

I have a table that I want to store 3 related fields -
driver, active(yes/no) and driver ID. These values are in
a table called Drivers and I want to store the related
fields in a table called Data Entry. How do I do this?
 
M

Michel Walsh

Hi,


I don't understand why you need another table. Just use a query like

SELECT Driver, Active, DriverID FROM Drivers

and use that query where you would have use the other table...




Hoping it may help,
Vanderghast, Access 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

Top