Is there a way to sort alphanumeric fields so they...
# advancedpdf
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
c
I have the same issue but with sizes.
Copy code
S
M
L
Xl
2Xl
3Xl
ather than:
Copy code
2xl
3xl
l
M
S
s
You should be able to create a Formula (Text) field with a formula like this: CASE WHEN {field} = 'S' THEN 'A' WHEN {field} = 'M' THEN 'B' WHEN {field} = 'L' THEN 'C' WHEN {field} = 'Xl' THEN 'D' WHEN {field} = '2Xl' THEN 'E' WHEN {field} = '3Xl' THEN 'F' ELSE {field} END
c
And then sort on that field, smart I like your Idear I’ll give it a try. @scottvonduhn