Autoarrange 1,10,2,3...

aprentice

Registered User.
Local time
Today, 09:55
Joined
Aug 27, 2005
Messages
37
How can I fix this problem?
I don't want to write them down as 01,02...10,11 it not aesthatically nice
 
Pat Hartman said:
If the field only contains numeric values, change its datatype. If the field contains both text and numbers, you need to find a way to separate the two so that the numeric values can be sorted properly.

String values are left justified and sorted column by column which is why 10 comes between 1 and 2 and not after 9 as you think it should. Numeric values are ordered based on their magnitude rather than character by character. Numeric values are essentially decimal aligned or right justified.

It's only numeric values.
Thnx
 

Users who are viewing this thread

Back
Top Bottom