I get the results to go the textbox on the screen but not to the field to textbox represents (table field).
thanks
This is in ms access
thanks
This is in ms access
=DLookUp("Street","Address","Id=" & [StreetDelvInfo])
=DLookUp("Stree t","Address","I d=" & [StreetDelvInfo]), which will not allow you to choose from values. A combo box must have a query (or Select Statement) for a list of values. =DLookUp("Address","Address","Id=" & [StreetDelvInfo])
=DLookUp("Street","Address","Id=" & [StreetDelvInfo])
=DLookUp("Address","Address","Id=" & [StreetDelvInfo])
Sub StreetDelvInfo_Click()
Forms!BoxInfoF!BoxAddress = DLookup("Address", "Address", "Id=" & [StreetDelvInfo])
Forms!BoxInfoF!BoxStreet = DLookup("Street", "Address", "Id=" & [StreetDelvInfo])
Forms!BoxInfoF!BoxZip = DLookup("Zip", "Address", "Id=" & [StreetDelvInfo])
End Sub
Comment