A Microsoft Office (Excel, Word) forum. OfficeFrustration

If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

Go Back   Home » OfficeFrustration forum » Microsoft Access » Database Design
Site Map Home Register Authors List Search Today's Posts Mark Forums Read  

STORE multiple values from a lookup table



 
 
Thread Tools Display Modes
  #1  
Old June 15th, 2004, 04:31 AM
beller
external usenet poster
 
Posts: n/a
Default STORE multiple values from a lookup table

My database will record and report production information from a manufacturing operation.
I need to lookup product information per machine and store the information in a daily production table. MachineID will be a foreign key in the daily production table.
However, the product information for each machine will change, so I need to store the product information in the production table instead of just the MachineID foreign key.
I want to automatically lookup multiple values from one table and permanently store them in another table so that they will not change with changes made to the lookup table.
  #2  
Old June 15th, 2004, 04:41 AM
Duane Hookom
external usenet poster
 
Posts: n/a
Default STORE multiple values from a lookup table

When I must do this, I usually have the information as columns in a combo
box. Then in the After Update event of the combo box, use code like:
Me.txtProdDescription = Me.cboProdID.Column(2)

--
Duane Hookom
MS Access MVP


"beller" wrote in message
...
My database will record and report production information from a

manufacturing operation.
I need to lookup product information per machine and store the information

in a daily production table. MachineID will be a foreign key in the daily
production table.
However, the product information for each machine will change, so I need

to store the product information in the production table instead of just the
MachineID foreign key.
I want to automatically lookup multiple values from one table and

permanently store them in another table so that they will not change with
changes made to the lookup table.


  #3  
Old June 16th, 2004, 04:16 AM
beller
external usenet poster
 
Posts: n/a
Default STORE multiple values from a lookup table

Thanks, this method worked well.

"Duane Hookom" wrote:

When I must do this, I usually have the information as columns in a combo
box. Then in the After Update event of the combo box, use code like:
Me.txtProdDescription = Me.cboProdID.Column(2)

--
Duane Hookom
MS Access MVP


"beller" wrote in message
...
My database will record and report production information from a

manufacturing operation.
I need to lookup product information per machine and store the information

in a daily production table. MachineID will be a foreign key in the daily
production table.
However, the product information for each machine will change, so I need

to store the product information in the production table instead of just the
MachineID foreign key.
I want to automatically lookup multiple values from one table and

permanently store them in another table so that they will not change with
changes made to the lookup table.



 




Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Forum Jump


All times are GMT +1. The time now is 11:38 PM.


Powered by vBulletin® Version 3.6.4
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 OfficeFrustration.
The comments are property of their posters.