Data Linking

L

Ljffusion1

Ok I have 2 Tables

One is called Production the other is called Operations.

I made a form for the Production table with 2 Combo Boxes

The first combo box is OperationID and The Second is OperationName

What I need to do is have it so that when I select the OperationID
which would be 10, I need the OperationName to automaticly appear in
the OperationName box. Both values are drawn from the operations table
and will be stored in the production table in identical fields

Thanks
 
A

Arvin Meyer [MVP]

If the OperationName is store in the Operations table, you only need to
store it once, not in both tables. It would be better to store only the
OperationID in the Production table. You can easily view the OperationName
in the combo, instead of the OperationID, by setting the column width
property of OperationID to 0 (zero) and allowing sufficient width to view
the OperationName.
 

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

Similar Threads


Top