more than 1 bound column?

N

NetworkTrade

I have a combobox looking at a separate table and the first column of the 3
columns is bound.

Can I bound another column also?
 
A

Al Campagna

Network,
No, but you can get (or display) the value from Col2 or Col3.
A calculated field with a ControlSource of
= cboYourComboName.Column(1)
would display the value of Col2. (Combos cols are numbered 0,1,2,3)
 
R

ruralguy via AccessMonster.com

Sorry, only one bound column allowed per control. You can still complete
other fields with the ComboBox though. Why do you think you need more than
one bound column?
 
Top