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
Christian W.
01/23/2020, 7:45 AM
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
scottvonduhn
01/23/2020, 5:24 PM
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
Christian W.
01/23/2020, 7:26 PM
And then sort on that field, smart I like your Idear I’ll give it a try. @scottvonduhn