Is there a way to sort alphanumeric fields so they...
# general
b
Is there a way to sort alphanumeric fields so they sort like this:
Copy code
1
2
100
Rather than this:
Copy code
1
100
2
s
are you using this in a search or somewhere else? you could try sorting twice. First by length, then by value. but not totally sure how you'd do that in a search. that's a problem when storing numbers in a form other than integer, decimal, etc.