Auto Fill In

cindyredo

Registered User.
Local time
Today, 08:14
Joined
Apr 23, 2001
Messages
16
Anyone know how to have fields automatically fill in on a form based upon data stored in a linked table? How to you specify where to go get the info from the table. Thanks.
 
To "display" data from another table, you can use DLookup or the Column(x) of a combo box.

Data "looked up" from the table should NOT be stored again in another table unless it is from a table that is specifically designed to provide "lookup" data.

DLookup("FirstName","tblEmployees","[EmpID] = Forms!frmFormYouAreOn![EmpID]")

Me.UnboundTextBoxName = Me.ComboBoxName.Column(1)
 

Users who are viewing this thread

Back
Top Bottom