Bound & Unbound Controls

L

LeLe

I want to assign a value to a bound control on a form that is bound to a
table, based on what the user selects in a different unbound combo box
control on the same form. The value I what to assign to the bound control,
is a column in the combo box based on the users selection. Can I do this?
Thanks.
 
S

schasteen

In the afterupdate event of your unbound combo box put

Me![NameOfTheBoundControl] =
me![ComboBoxName].column(NumberOfColumnThatContainsData)
 

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

Top