combine first and last name in combo box

A

angel 82

i want to combine first and last name in combo box . do I make a new combo box from the wizard or do i use the last name box? Then i want it to be scronized to the record i selec
thank you
 
D

Douglas J. Steele

I'd create a query that concatenates the two as a computed field, and base
your combobox on that query.

Something like

SELECT DISTINCT [FirstNm] & " " & [LastNm] AS FullNm, FirstNm, LastNm FROM
MyTable ORDER BY LastNm, FirstNm

--
Doug Steele, Microsoft Access MVP

(No private e-mails, please)



angel 82 said:
i want to combine first and last name in combo box . do I make a new combo
box from the wizard or do i use the last name box? Then i want it to be
scronized to the record i select
 

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