Automatic Field Population in a form

G

Guest

I have a table named "Employees" that has the employee name and billing rate.
I want the form to automatically populate the billing rate field when I
select the employee name from a combo box.
 
W

Wayne Morgan

Add the billing rate field to the combo box's Row Source query. Set the
width of this column to 0" if you don't want it visible. In the textbox, set
the Control Source to the value of this column.

Example:
=MyCombo.Column(1)

The column index number is zero based, so the first column is 0, the second
is 1, etc.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads


Top