Sort in a ComboBox

  • Thread starter Thread starter Tiffany
  • Start date Start date
T

Tiffany

I have a ComboBox that is bound to a FULL NAME field in my table. When I
look at the ComboBox in the form the names are not in alphabetical order.
How do I change that?

Thanks
 
Tiffany said:
I have a ComboBox that is bound to a FULL NAME field in my table. When I
look at the ComboBox in the form the names are not in alphabetical order.
How do I change that?

Edit the RowSource and add an OrderBy clause to the query.
 
Do not bind the control to table. Create a query, sorted on the desired
field and bind that to the control's rowsource.
 

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