Alphabetical Order!

B

Bob

I have a drop down list that contains horse names from cbhorse how can I
get them to be in alphabetical order

Thanks in advance.........Bob Vance
 
F

fredg

I have a drop down list that contains horse names from cbhorse how can I
get them to be in alphabetical order

Thanks in advance.........Bob Vance

Create a query, sorted by HorseName.
Use that as the combo box RowSource.
 
G

Guest

Go to design view of the form or (shudder) table. At the row source for the
drop down, hit the ... build button. Create a query from cbhorse and sort on
the horse's names. Close the query and use is as the row source instead of
the table.
 
D

Duane Hookom

Add a sorting in the Row Source query for the combo box like:

SELECT HorseID, HorseName
FROM tblHorses
ORDER BY HorseName;
 

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