I have the control source for the text box set as =[CmbName].Column(1) (it doesn't work as is):
However, the data that the textbox should draw from is from a different table than the one the form is made for. I have a table "Product". In it, there is product names as the PK and a "target" (a number) as a second field. In the form I want the user to be able to select a product (cmb) and the 'target' text box to auto-fill with the correct target number that is found in the Product table [for the selected product]. However the form's record source is for another table.
EDIT: I have also tried =[Combo20].[Products]![Target]
And that does not do the trick either.