I am trying to get my combo box to show all 3 fields in the dropdonwbut bound
to the 3rd field. It keeps showing the 1st field after the selection how do
I get it to show the 3rd field?
I have colum count set to 3 and bound set to 3
A Combo only shows one field when it's not dropped down - that's just
the way they're designed.
Two getarounds if you want to see multiple fields:
- put two unbound Textboxes on the form with control source
=comboboxname.Column(1)
=comboboxname.Column(2)
to show the second and third (it's zero based) column
- Or, base the combo on a Query in which the first nonzero width field
is an expression concatenating the fields you want to see:
SELECT PersonID, [FirstName] & (" " + [MiddleName]) & " " & [LastName]
AS FullName FROM people ORDER BY LastName, FirstName, MiddleName;
ColumnWidths 0;1.5 will store the PersonID and display the full name.
John W. Vinson[MVP]