I have a field which I'm using as a row source for a listbox.
The field holds values which look like: A1, A2, A10, AB, 1, 2.
I want it to look like: 1, 2, A1, A2, A10, AB.
I tried:
"SELECT DISTINCT TenancyCode FROM tbl1 WHERE
TenancyCode IS NOT NULL ORDER BY TenancyCode
ASC"
The result is not as expected.