List Box

  • Thread starter Thread starter Bob Leonard
  • Start date Start date
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?
 
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
 
Back
Top