Multiple Column Combo Box

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

Guest

I have a 2 column combo box (column 1 contains 1-alpha character and column 2
contains a description of column 1 code) that is created by a table and I
have column 1 as my search information I will be using in a query but I would
like to have column 2 listed as a text box just for informational purpose.
Can anyone help me out.

Thanks!!!!
 
Hi, Zee.

Set the ControlSource of the textbox to:

=Me!YourComboBox.Column(1)

Hope that helps.
Sprinks
 
in the control source of the text box, put the following
=ComboBox.Column(1)
 
Thanks, that was exactly what I needed.

Sprinks said:
Hi, Zee.

Set the ControlSource of the textbox to:

=Me!YourComboBox.Column(1)

Hope that helps.
Sprinks
 

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

Back
Top