J
JimP
I have code that creates a row source for a list box on a form.
"SELECT DISTINCT LCase(cust_id) FROM tblCustomers"
A particular user is reporting that the cust_id's in the list box are in no
particular order. This user starts their cust_id's with (2) digits and uses
both upper/lower case characters (e.g. 05Nwind)
I think DISTINCT should force a sort in alphanumeric order - any ideas?
Note: the LCase conversion has to do with eliminating duplicate codes in a
case sensitive SQL Server database (don't know if this could be the issue)
"SELECT DISTINCT LCase(cust_id) FROM tblCustomers"
A particular user is reporting that the cust_id's in the list box are in no
particular order. This user starts their cust_id's with (2) digits and uses
both upper/lower case characters (e.g. 05Nwind)
I think DISTINCT should force a sort in alphanumeric order - any ideas?
Note: the LCase conversion has to do with eliminating duplicate codes in a
case sensitive SQL Server database (don't know if this could be the issue)