Text box bound to non-default combo box column

J

jtertin

I have a text box that I would like bound to a drop down control. It
is easy enough to set the Control Source to equal the drop down's
default column value (i.e. "=[ComboBoxName]"), but the combo box has
three columns, and I want it bound to a non-default column.

I have tried "=[ComboBoxName](2)" and "=[ComboBoxName(2)] where (2) is
the column that I want to bind to with no luck.

Any info is greatly appreciated!
 
R

Rick Brandt

jtertin said:
I have a text box that I would like bound to a drop down control. It
is easy enough to set the Control Source to equal the drop down's
default column value (i.e. "=[ComboBoxName]"), but the combo box has
three columns, and I want it bound to a non-default column.

I have tried "=[ComboBoxName](2)" and "=[ComboBoxName(2)] where (2) is
the column that I want to bind to with no luck.

Any info is greatly appreciated!

=ComboBoxName.Colum(n)

Where values of "n" are...

0 = first column
1 = second column
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

Top