Display 1+ column in combo box

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

Guest

I have a combo box with 3 column, displaying 2 columns. The 2 columns display
in the drop down list, but not on the currently selected entry.

How can I display two columns on the currently selected entry (the value
displayed when the combo box does not have focus)?
 
Mrs. Kim said:
I have a combo box with 3 column, displaying 2 columns. The 2 columns
display in the drop down list, but not on the currently selected
entry.

How can I display two columns on the currently selected entry (the
value displayed when the combo box does not have focus)?

The ComboBox itself cannot do this, but you can place a TextBox next to it with
a ControlSource of...

=ComboBoxName.Column(n)

....where n is the zero-based ordinal position of the column you want displayed.
 
Back
Top