Combo Box, list order

G

Guest

I am using a Combo Box to select and display names from a table. The names in
the table are in alphabetic order and to begin with so was the Combo Box. I
have since added new names to the list, the Table list remains in alphabetic
order but the Combo Box is all over the place. Can anyone suggest a cure for
this. Many Thanks Fritz
 
A

Allen Browne

Open the form in design view.

Right-click the combo, and choose Properties.

On the Data tab, examine the Row Source property.
Make it a query that sorts the records the way you want.
 
G

Guest

Thanks for you response Allen.

The row source is as follows: SELECT Suppliers.SupplierName FROM Suppliers;
and the source type is Table/Query.

Do either of these need to be altered?

Fritz
 
B

Bob Quintal

Thanks for you response Allen.

The row source is as follows: SELECT Suppliers.SupplierName FROM
Suppliers; and the source type is Table/Query.

Do either of these need to be altered?

Fritz

SELECT Suppliers.SupplierName FROM Suppliers ORDER BY
suppliers.Suppliername;
 

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