Hi all,
I have a combobox with a row source of :-
The bound column is 1 and the column count is 2
When new entries are added to tblBrokerages, they appear at the bottom of the combobox, however, I'd like the combobox in alphabetical order. Despite the row source above, the combobox remains in tblBrokerages.ID order.
Can anyone confirm what needs to be changed? Thanks in advance.
I have a combobox with a row source of :-
Code:
SELECT tblBrokerages.ID, tblBrokerages.Brokerage_Name FROM tblBrokerages ORDER BY tblBrokerages.Brokerage_Name;
The bound column is 1 and the column count is 2
When new entries are added to tblBrokerages, they appear at the bottom of the combobox, however, I'd like the combobox in alphabetical order. Despite the row source above, the combobox remains in tblBrokerages.ID order.
Can anyone confirm what needs to be changed? Thanks in advance.