Auto populate fields from another table

JoeAccessHelp

New member
Local time
Today, 21:07
Joined
Oct 14, 2016
Messages
2
Hi all

Is it possible to auto populate a field depending what is put in another field. E.g. I have 'product code' and 'Product name'. When raising the Invoice I would like to be able to enter the code or the name and the other one populate automatically.

Thanks
Joe
 
Yes, create an update query,
join the entry table to the lookup Table on the common field, CODE.
Update the entry table fields with all fields needed from the lookup product table.

To update :
Docmd.openquery "quUpdProdFldsQry"
 

Users who are viewing this thread

Back
Top Bottom