Display 1+ column in combo box

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)?
 
R

Rick Brandt

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.
 

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