Combo Box

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

Guest

When creating a combo box, can you combine two fields into the one field for
the combo box?

Thanks
Todd
 
Yes, you can concatenate words ([field1] & [field2]) or (field1] & ' ' &
[field]2) if you need a space between.
 
To add some detail to Wendy's post: Make the row source of the combo box this
query:
SELECT [Field1] & [Field2] AS [GiveItSomeName] FROM [NameOfTable]

You could also add a WHERE clause if you want to filter the records from the
table.
 

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