I have an admin form to update fields in a Course table. The form has a search combo box containing a list of the course names. Once a course is selected, the course attributes of a course are displayed according to the selected CourseID. The Course table has the following fields: CourseID (autonumber), CourseName. Currently, I have the search combo box listing the CourseNames in the Course table in alphabetical order; therefore, the CourseID's are not necessarily in incremental order. When I open the form, I want to display the first Course in the list i.e. the first in alphabetical order, not the first in the Course table. However, I can only seem to get the latter. I'm using the GoToRecord action in a macro specifying "First" in the Record argument so it's displaying the first record in the Course table. How can I display the first record at the top of the alphabetical order instead of the record with the lowest autonumber? Hope this is clear. Thanks for your help!