Lookups in tables

lynxbci

Registered User.
Local time
Today, 16:24
Joined
Nov 27, 2007
Messages
73
Hello,
I have a table tbl Packing List where the user inputs a product code. This field is restricted as it looks up possible values from tbl product list This works ok, as I have linked the tables.

I would then like the description, also stored in tbl product list to also be retrieved into a description field in tbl Packing List.

It seems a simple enough process but I can not work it out.

Summary
User inputs code into table, then we want description for that code to come into the description field.


thanks
 
Thanks, but it doesn't do what I need.

I can use this method if I am filling in multiple text fields on a form, but not to populate 2 fields in a table it seems.
 
Thought it might be, so I will get round it by using text fields instead of a table then output them to a table using vba. Thanks anyway.
 
You do not need to store this information anywhere, you have Table A which already holds the information you need. You only need to JOIN them to get what you want. You do not need to copy Stuff to Table B. Why are you storing redundant data?
 
Hi
Ok I have a user who wants to create a packing list, they will type in a code, and it will get them a description then they add a volume and it will calc boxes, and pallets etc, then this needs to be in a report.

It could be 1 row or 30 rows I don't want 30 lines of text boxes and I can not think of another way to do it.
 

Users who are viewing this thread

Back
Top Bottom