Need Help With Combobox Display

  • Thread starter BB via AccessMonster.com
  • Start date
B

BB via AccessMonster.com

I have a combo box that references two fields (Part Number and Description).
The problem is that it only shows the Part Number once selected. I want it to
show the the Part Number and Description once its selected without putting in
another textbox.
 
K

KARL DEWEY

Use this for source --
SELECT [Part Number], [Part Number] & " " & [Description] FROM ....
Then for Column Widths use -- 0"; 1.5" or whatever width necessary for
both Part Number and Description.
 
Top