Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Alphabetical order in drop down list?

Status
Not open for further replies.

carolineJ

Technical User
Sep 25, 2001
43
0
0
SE
I have a form called register a new project. One of the fields in the form is called project manager. It is a drop down list and the choices available are taken from a table with all project managers. How ever they are not sorted in alpabetical order so it is really hard for the user to find the project manager he or she is looking for. How can I correct this?
 
Make the rowsource of the combo box an SQL instead of a Table. Like...

select
[Project Manager]
from
TableName
order by
[Project Manager]
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top