Display two fields in the Combo box

G

Guest

Hello all,

Thanks for all of your past help.

I bet I stump you on this one!!!! How do you display two fields in a
combo/list box?
Specifically, I have a combo box that has several fields of data associated
with it. When I am "NOT" clicking one it I need for it to show two fields,
first and last name at the same time.

Thanks again.
JC
PAPI
 
J

Joan Wild

Joe C said:
I bet I stump you on this one!!!! How do you display two fields in a
combo/list box?
Specifically, I have a combo box that has several fields of data
associated
with it. When I am "NOT" clicking one it I need for it to show two fields,
first and last name at the same time.

Set the rowsource of the combobox to a query

SELECT [FirstName] & " " & [LastName], SomeID, other fields....
FROM YourTable;

Make the second column bound, and adjust the column widths as necessary.
 

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