linked object

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I am having trouble setting up a form. I would like to be able to pick out a payroll number and in another part of the form have the persons name appear. I have the payroll number as a combo box and the picking works fine but I cannot seem to make it show the name after I have picked. Help Please
 
Add the persons name as a column in the combo box.You don't have to show it.
Then add a text box in your form with a control source like:
=cboPayrollNumber.Column(1)
Keep in mind that column numbering is zero based so Column(1) references the
second column in the combo box.

--
Duane Hookom
MS Access MVP


Akrt48 said:
I am having trouble setting up a form. I would like to be able to pick
out a payroll number and in another part of the form have the persons name
appear. I have the payroll number as a combo box and the picking works fine
but I cannot seem to make it show the name after I have picked. Help Please
 
Back
Top