Troy said:
I have a table where the primary field items are like,
TS1
TS2
TS3
and so on. The problem is it shows up in this order,
TS1
TS10
TS11
TS12
and so on. How can I force it to go in the order like
above? This not so important in my table, but really
important in my form.
Thanks,
Troy
Let me add to what the others have said. The list is in Alpha order.
In a text field the normal sort starts with the first character and the then
next character, be that character one of the 26 letters or 10 numbers or ?
many other characters.
What the best solution may be will depend on a number of factors. In
some cases you can use one of the tricks suggested, but a better solution
may be to reconfigure the data. For example you may want to break it up
into alpha and numeric parts in two different fields. Another suggestion is
to change the way you enter the data. Could you use TS01. TS02, TS03 ...
TS10, TS11 etc? If you may go over 99 consider TS001
I have that problem with data I had to import each year. It had over
4,000 records and I automated the task of changing all those "1XXXX" ...
"9XXXXX" into 01XXXX .. 09XXXX.
Good Luck